diff options
-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 b044024..e15f8e5 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -194,7 +194,7 @@ class PHPFSPOT { // and add the $min_size set above $size = $min_size + (($value - $min_qty) * $step); // uncomment if you want sizes in whole %: - // $size = ceil($size); + $size = ceil($size); print "<a href=\"javascript:Tags('add', ". $key .");\" class=\"tag\" style=\"font-size: ". $size ."%;\">". $this->tags[$key] ."</a> "; |