diff options
author | plegall <plg@piwigo.org> | 2006-03-16 22:34:45 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-03-16 22:34:45 +0000 |
commit | 5980db248ab4cc05e8596e07d7efc31048bcb8e8 (patch) | |
tree | 8cd6f048c590c0439b93e8a62f72c6300ff323c0 /admin/user_list.php | |
parent | 853bf2a0a5bc77d6ad1d22dbe778eb6b7b1b12be (diff) |
bug fixed: create_navigation_bar take into account clean URL if requested.
deletion: argument link_class (HTML class of links) in function
create_navigation_bar was removed, useless since branch 1.5.
bug fixed: rate_items are now a configuration parameter (set in config file)
modification: new functions library functions_rate.inc.php to reduce
picture.php length.
bug fixed: categories were never expanded in the menu since clean URLs.
bug fixed: changing pictures sorting order in main page was always
rederecting to root category.
git-svn-id: http://piwigo.org/svn/trunk@1084 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/user_list.php')
-rw-r--r-- | admin/user_list.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/admin/user_list.php b/admin/user_list.php index 6bbb5eaa1..6f1b11938 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -747,8 +747,7 @@ $navbar = create_navigation_bar( $url, count($page['filtered_users']), $start, - $conf['users_page'], - '' + $conf['users_page'] ); $template->assign_vars(array('NAVBAR' => $navbar)); |