includes/wikiengine/Render/Plain.php
author Dan
Wed, 10 Sep 2008 06:57:54 -0400
changeset 306 7a7173c0f62f
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed SQL parse errors caused by conversion to \r\n by some FTP/zip clients (hackish workaround that isn't Enano's fault)

<?php

class Text_Wiki_Render_Plain extends Text_Wiki_Render {
    
    function pre()
    {
        return;
    }
    
    function post()
    {
        return;
    }
    
}
?>