diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-04-22 16:31:12 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-04-22 16:31:12 -0700 |
commit | 5b9c47ae6a39a650188d2653801631daf3f7519a (patch) | |
tree | b6720eaa5dd900c882041c9b4352ab0c499232f1 /modules/tag/controllers | |
parent | 5040adebb5c4e1e491fbb6c3b98783f5809020a3 (diff) | |
parent | e14b954f1857ffc122ff9d61833fee16f8c02c26 (diff) |
Merge branch 'master' of github.com:gallery/gallery3
Diffstat (limited to 'modules/tag/controllers')
-rw-r--r-- | modules/tag/controllers/tags.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/tag/controllers/tags.php b/modules/tag/controllers/tags.php index fe6d747b..bf41c4df 100644 --- a/modules/tag/controllers/tags.php +++ b/modules/tag/controllers/tags.php @@ -22,7 +22,8 @@ class Tags_Controller extends Controller { // Far from perfection, but at least require view permission for the root album $album = ORM::factory("item", 1); access::required("view", $album); - print tag::cloud(30); + + print tag::cloud(module::get_var("tag", "tag_cloud_size", 30)); } public function create($item_id) { |