diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-20 17:45:00 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-20 17:45:00 +0000 |
commit | 664386a9c2909c59cccadea46812059305c4ff08 (patch) | |
tree | 35a21697add5e6fccbca95afbcd084eaa64ed454 /phpfspot.class.php | |
parent | 8bd24a3538f0825a4c6a4e76a05a9f6e0df64464 (diff) |
finally fixed tags display width problem
git-svn-id: file:///var/lib/svn/phpfspot/trunk@116 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-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 eb8a8e6..c70478c 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -198,7 +198,7 @@ class PHPFSPOT { // uncomment if you want sizes in whole %: $size = ceil($size); - print "<a href=\"javascript:Tags('add', ". $key .");\" class=\"tag\" style=\"font-size: ". $size ."%;\">". $this->tags[$key] ."</a> "; + print "<a href=\"javascript:Tags('add', ". $key .");\" class=\"tag\" style=\"font-size: ". $size ."%;\">". $this->tags[$key] ."</a>, "; } |