diff options
author | plegall <plg@piwigo.org> | 2010-07-27 12:49:29 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-07-27 12:49:29 +0000 |
commit | a17353b7bb0db0305923d4b45443aa01e825c378 (patch) | |
tree | 9eb15f889365c8dbd5b6cae5cad10384c16be9fa /include | |
parent | 41757b9e1aab9ff4b3a75ac37ac01dde604d57d1 (diff) |
buf 1785 fixed: the number of related tags is no longer hard coded
git-svn-id: http://piwigo.org/svn/branches/2.1@6715 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 5 | ||||
-rw-r--r-- | include/menubar.inc.php | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index e0d7b2318..694785bb8 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -631,8 +631,9 @@ $conf['full_tag_cloud_items_number'] = 200; // cloud in the menubar. Only the most represented tags will be shown $conf['menubar_tag_cloud_items_number'] = 100; -// content_tag_cloud_items_number: number of tags to show in the tag -// cloud on the content page. Only the most represented tags will be shown +// content_tag_cloud_items_number: number of related tags to show in the tag +// cloud on the content page, when the current section is not a set of +// tags. Only the most represented tags will be shown $conf['content_tag_cloud_items_number'] = 12; // tags_levels: number of levels to use for display. Each level is bind to a diff --git a/include/menubar.inc.php b/include/menubar.inc.php index a5cc2ffed..133aab6ec 100644 --- a/include/menubar.inc.php +++ b/include/menubar.inc.php @@ -143,7 +143,7 @@ function initialize_menu() else { $selection = array_slice( $page['items'], $page['start'], $page['nb_image_page'] ); - $tags = add_level_to_tags( get_common_tags($selection, 12) ); + $tags = add_level_to_tags( get_common_tags($selection, $conf['content_tag_cloud_items_number']) ); foreach ($tags as $tag) { $block->data[] = |