includes/wikiengine/Render/Plain.php
author Dan
Mon, 11 Aug 2008 21:33:46 -0400
changeset 681 424ea7aac0ca
parent 1 fe660c52c48f
permissions -rw-r--r--
SECURITY: Full query is no longer shown on SQL injection attempt; silenced calls to mysql_unbuffered_query() due to some untraceable yet harmless errors

<?php

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