includes/wikiengine/Render/Plain/Heading.php
author Dan
Tue, 26 Feb 2008 19:51:43 -0500
changeset 463 0857911fb7f1
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed some bugs with $paths->getParam() and $paths->get_pageid_from_url() when slashes are in the namespace prefix. Result of testing on Windows Vista + Apache 2.2. Using TortoiseHG

<?php

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