diff options
author | Nathan Kinkade <nath@nkinka.de> | 2011-05-12 23:53:29 +0000 |
---|---|---|
committer | Nathan Kinkade <nath@nkinka.de> | 2011-05-12 23:53:29 +0000 |
commit | dbaa0ddfaf43eb1c4d5cdbe8080064fc3e67e378 (patch) | |
tree | a4910f81c82dd722be6ebc9b835d99339cb4aaba /modules | |
parent | 2ad445441974c64599df496ba4a585415aa41169 (diff) |
Changed this back to upstream version since now there is a user setting for tag cloud size.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/tag/helpers/tag_block.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/helpers/tag_block.php b/modules/tag/helpers/tag_block.php index 74656a0a..cec71f41 100644 --- a/modules/tag/helpers/tag_block.php +++ b/modules/tag/helpers/tag_block.php @@ -30,7 +30,7 @@ class tag_block_Core { $block->css_id = "g-tag"; $block->title = t("Tags"); $block->content = new View("tag_block.html"); - $block->content->cloud = tag::cloud(module::get_var("tag", "tag_cloud_size", 250)); + $block->content->cloud = tag::cloud(module::get_var("tag", "tag_cloud_size", 30)); if ($theme->item() && $theme->page_subtype() != "tag" && access::can("edit", $theme->item())) { $controller = new Tags_Controller(); |