Modified bbcode list to make it easier for modifying the bullets.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@40914 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Jeremy Shipman 2007-08-27 05:30:58 +00:00
parent f199dc6cd4
commit 2d0ec721d0
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class BBCodeParser extends TextParser {
function useable_tagsHTML(){
$useabletags = "<ul class='bbcodeExamples'>";
foreach($this->usable_tags()->toArray() as $tag){
$useabletags = $useabletags."<li>".$tag->Example."</li>";
$useabletags = $useabletags."<li><span>".$tag->Example."</span></li>";
}
return $useabletags."</ul>";
}