includes/wikiengine/Render/Plain.php
author Dan
Sat, 07 Jun 2008 12:46:18 -0400
changeset 562 75df0b2c596c
parent 1 fe660c52c48f
permissions -rw-r--r--
Got initial CSRF token framework implemented and sample implementation added in Special:Logout; removing Javascript compression engine from aggressive_optimize_html() and instead calling JavascriptCompressor class from js-compressor.php

<?php

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