includes/wikiengine/Render/Plain/Heading.php
author Dan
Fri, 21 Dec 2007 18:21:20 -0500
changeset 329 0437a7cf1acc
parent 1 fe660c52c48f
permissions -rw-r--r--
Added update-checking function (still a little rough around the edges); added support into admin user CP for changing avatars

<?php

class Text_Wiki_Render_Plain_Heading extends Text_Wiki_Render {
    
    function token($options)
    {
        if ($options['type'] == 'end') {
            return "\n\n";
        } else {
            return "\n";
        }
    }
}
?>