diff options
author | Nathan Kinkade <nkinkade@nkinka.de> | 2010-08-19 23:28:27 +0000 |
---|---|---|
committer | Nathan Kinkade <nkinkade@nkinka.de> | 2010-08-19 23:28:27 +0000 |
commit | d1475ec40ebda6404baab45b5b2482c651e657f9 (patch) | |
tree | d538d92c5e48bd62d7f90c81977f8155dfe96173 | |
parent | 44eaa9b68f7c56b887bcdfa027f9db18f100ad17 (diff) |
Bump 'Popular tags' widget to show 250 tags, and rename title from 'Popular tags' to 'Tags'
-rw-r--r-- | modules/tag/helpers/tag_block.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/tag/helpers/tag_block.php b/modules/tag/helpers/tag_block.php index 0473e4b2..82726a72 100644 --- a/modules/tag/helpers/tag_block.php +++ b/modules/tag/helpers/tag_block.php @@ -19,7 +19,7 @@ */ class tag_block_Core { static function get_site_list() { - return array("tag" => t("Popular tags")); + return array("tag" => t("Tags")); } static function get($block_id, $theme) { @@ -28,9 +28,9 @@ class tag_block_Core { case "tag": $block = new Block(); $block->css_id = "g-tag"; - $block->title = t("Popular tags"); + $block->title = t("Tags"); $block->content = new View("tag_block.html"); - $block->content->cloud = tag::cloud(30); + $block->content->cloud = tag::cloud(250); if ($theme->item() && $theme->page_subtype() != "tag" && access::can("edit", $theme->item())) { $controller = new Tags_Controller(); @@ -42,4 +42,4 @@ class tag_block_Core { } return $block; } -}
\ No newline at end of file +} |