From a540eee93088628adeb3127227f401592ce4403c Mon Sep 17 00:00:00 2001 From: pete Date: Fri, 14 May 2010 07:51:41 +0000 Subject: Updated core tagcloud view markup/css. git-svn-id: http://code.elgg.org/elgg/trunk@6043 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/output/tagcloud.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'views/default/output/tagcloud.php') diff --git a/views/default/output/tagcloud.php b/views/default/output/tagcloud.php index e8fffa705..2296c01fe 100644 --- a/views/default/output/tagcloud.php +++ b/views/default/output/tagcloud.php @@ -33,6 +33,9 @@ if (!empty($vars['tagcloud']) && is_array($vars['tagcloud'])) { $counter = 0; $cloud = ""; $max = 0; + + $cloud .= "

".elgg_echo('tagcloud')."

"; + foreach($vars['tagcloud'] as $tag) { if ($tag->total > $max) { $max = $tag->total; @@ -44,11 +47,13 @@ if (!empty($vars['tagcloud']) && is_array($vars['tagcloud'])) { } // protecting against division by zero warnings $size = round((log($tag->total) / log($max + .0001)) * 100) + 30; - if ($size < 60) { - $size = 60; + if ($size < 100) { + $size = 100; } $url = $vars['url'] . "pg/search/?q=". urlencode($tag->tag) . "&search_type=tags{$type}{$subtype}"; $cloud .= "tag)." ({$tag->total})\" style=\"text-decoration:none;\">" . htmlentities($tag->tag, ENT_QUOTES, 'UTF-8') . ""; } + + $cloud .= "
"; echo $cloud; } \ No newline at end of file -- cgit v1.2.3