From c7e18357997a370d30d53d800c8e7d3f34d695ef Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Mon, 18 Jun 2007 18:16:24 +0000 Subject: [PATCH] limit percentage of font-size for tag cloud entries to intenger values git-svn-id: file:///var/lib/svn/phpfspot/trunk@105 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "". $this->tags[$key] ." "; -- 2.17.1