diff options
Diffstat (limited to 'modules')
-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 +} |