includes/wikiengine/Render/Plain.php
author Dan
Sat, 01 Mar 2008 18:55:54 -0500
changeset 466 1cc8a038ad20
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed improper serializing of IP that could allow reusing of key from multiple IP addresses.

<?php

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