includes/wikiengine/Render/Plain/Newline.php
author Dan
Fri, 15 May 2009 17:24:12 -0400
changeset 987 b13a42ebaefb
parent 1 fe660c52c48f
permissions -rw-r--r--
Added protection against obscene words in CAPTCHAs

<?php

class Text_Wiki_Render_Plain_Newline extends Text_Wiki_Render {
    
    
    function token($options)
    {
        return "\n";
    }
}

?>