includes/wikiengine/Render/Plain/Newline.php
author Dan
Wed, 06 Feb 2008 18:41:47 -0500
changeset 401 6ae6e387a0e3
parent 1 fe660c52c48f
permissions -rw-r--r--
Implemented a new CAPTCHA API; the frontend ($session->{make,get}_captcha) is API-compatible but the backend (the captcha class) is deprecated.

<?php

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

?>