includes/wikiengine/Render/Plain/Heading.php
author Dan
Wed, 06 Feb 2008 18:41:47 -0500
changeset 401 6ae6e387a0e3
parent 1 fe660c52c48f
permissions -rw-r--r--
Implemented a new CAPTCHA API; the frontend ($session->{make,get}_captcha) is API-compatible but the backend (the captcha class) is deprecated.

<?php

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