includes/wikiengine/Render/Plain.php
author Dan
Mon, 04 May 2009 23:02:53 -0400
changeset 945 c19242d13a49
parent 1 fe660c52c48f
permissions -rw-r--r--
Removed "@" from all call_user_func() calls to make debugging special pages and such possible

<?php

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