diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-07-08 12:52:24 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-07-08 12:52:24 +0000 |
commit | 179073f20df0b8ad23acf777ef7925f7516b4b3e (patch) | |
tree | e16cbe6e52d54b4d4bebad94b8ee1eae54800c7d | |
parent | 2d1b7b600731d0333acbbdf3c7f253eadbde71d6 (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
-rw-r--r-- | phpfspot.class.php | 2 |
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> "; + print "<a href=\"javascript:Tags('del', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>, "; } } |