includes/wikiengine/Render/Plain/Include.php
author Dan
Mon, 28 Jan 2008 23:07:32 -0500
changeset 279 b6faa6d6ade2
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed case where HTML comments were getting stripped when opening tag not followed by whitespace (<!--foo--> was stripped, <!-- foo --> was not, neither is stripped now)

<?php
class Text_Wiki_Render_Plain_Include extends Text_Wiki_Render {    
    function token()
    {
        return '';
    }
}
?>