includes/wikiengine/Render/Plain.php
author Dan
Sat, 02 Feb 2008 22:44:05 -0500
changeset 397 06415d243d09
parent 1 fe660c52c48f
permissions -rw-r--r--
Added a heading "editing page" in page editor for visual appeal; removed use of alternate <?= ?> syntax in installer as it was causing problems on Win2k3 + PHP/FastCGI. (Experimentally using TortoiseHG's hgtk to commit)

<?php

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