summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-07-08 12:52:24 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-07-08 12:52:24 +0000
commit179073f20df0b8ad23acf777ef7925f7516b4b3e (patch)
treee16cbe6e52d54b4d4bebad94b8ee1eae54800c7d /phpfspot.class.php
parent2d1b7b600731d0333acbbdf3c7f253eadbde71d6 (diff)
issue34, fixed wickeld tag column when too many tags are selected
git-svn-id: file:///var/lib/svn/phpfspot/trunk@182 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index d9e8bbe..f3944d1 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -291,7 +291,7 @@ class PHPFSPOT {
{
// return all selected tags
if(isset($_SESSION['selected_tags']) && in_array($tag, $_SESSION['selected_tags'])) {
- print "<a href=\"javascript:Tags('del', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>&nbsp;";
+ print "<a href=\"javascript:Tags('del', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>, ";
}
}