includes/wikiengine/Render/Plain/Newline.php
author Dan
Thu, 26 Feb 2009 01:07:32 -0500
changeset 843 4415e50e4e84
parent 1 fe660c52c48f
permissions -rw-r--r--
Added possibility for auth plugins, which can log a user in using non-standard authentication methods.

<?php

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

?>