includes/wikiengine/Render/Plain/Newline.php
author Dan
Thu, 15 Nov 2007 17:52:53 -0500
changeset 255 ba28d43a6b86
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed a few (more) MySQL issues with the installer and dashes in the database name

<?php

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

?>