Skip to content

Commit

Permalink
Bug #9154: token() method for class Text_Wiki_Render_Tiki_Paragraph i…
Browse files Browse the repository at this point in the history
…mplemented

git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk@282096 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Rodrigo Sampaio Primo committed Jun 14, 2009
1 parent 12e29e1 commit c567a00
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Text/Wiki/Render/Tiki/Paragraph.php
Expand Up @@ -17,7 +17,11 @@ class Text_Wiki_Render_Tiki_Paragraph extends Text_Wiki_Render {

function token($options)
{
return '';
if ($options['type'] == 'start') {
return "";
} else {
return "\n\n";
}
}
}
?>

0 comments on commit c567a00

Please sign in to comment.