diff options
author | plegall <plg@piwigo.org> | 2005-02-09 21:47:21 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-02-09 21:47:21 +0000 |
commit | 70478add18174e077dcdf6435890117ff3d096c5 (patch) | |
tree | 860246f7067f18e08fd72f8492b379dcfdd7a279 | |
parent | 10adb2a72cd06cb6017fcb86bc70d7bc6cc7bb94 (diff) |
- removes from special menu the number of elements displayed in most_seen
and best_rated categories
git-svn-id: http://piwigo.org/svn/trunk@733 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | category.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/category.php b/category.php index f186b43b2..09decc08a 100644 --- a/category.php +++ b/category.php @@ -180,7 +180,7 @@ $template->assign_block_vars( array( 'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=most_visited'), 'TITLE' => $lang['most_visited_cat_hint'], - 'NAME' => $conf['top_number'].' '.$lang['most_visited_cat'] + 'NAME' => $lang['most_visited_cat'] )); // best rated $template->assign_block_vars( @@ -188,7 +188,7 @@ $template->assign_block_vars( array( 'URL' => add_session_id(PHPWG_ROOT_PATH.'category.php?cat=best_rated'), 'TITLE' => $lang['best_rated_cat_hint'], - 'NAME' => $conf['top_number'].' '.$lang['best_rated_cat'] + 'NAME' => $lang['best_rated_cat'] )); // random $template->assign_block_vars( |