includes/wikiengine/Render/Plain/Newline.php
author Dan
Thu, 04 Oct 2007 08:22:25 -0400
changeset 160 bed9d04fa144
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed text colors on pages when dark system themes are used (bug could be seen using MurrinaNightOrange on an Ubuntu system)

<?php

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

?>