includes/wikiengine/Render/Plain.php
author Dan
Wed, 09 Jul 2008 21:04:51 -0400
changeset 620 58852672ff12
parent 1 fe660c52c48f
permissions -rw-r--r--
Added "default" option for getConfig() and made setConfig() only set if the new value is different

<?php

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