diff options
author | plegall <plg@piwigo.org> | 2005-09-24 19:05:55 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-24 19:05:55 +0000 |
commit | 4c949342ec4f6a7479396385af592cf8630ff79f (patch) | |
tree | 89ec018219422b625b5007bb6ab8664b7fa0874e /admin/element_set_unit.php | |
parent | d53bea8e7dd5c796aff8aedb75254fd90fc9fd6f (diff) |
- bug 162 fixed: division by zero when trying to view "all" items in
admin/element_set_(global|unit)
git-svn-id: http://piwigo.org/svn/trunk@875 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/element_set_unit.php | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/admin/element_set_unit.php b/admin/element_set_unit.php index 9ccbf9346..fbffe99dd 100644 --- a/admin/element_set_unit.php +++ b/admin/element_set_unit.php @@ -157,7 +157,23 @@ $template->assign_vars( // | global mode thumbnails | // +-----------------------------------------------------------------------+ -$page['nb_images'] = !empty($_GET['display']) ? intval($_GET['display']) : 5; +// how many items to display on this page +if (!empty($_GET['display'])) +{ + if ('all' == $_GET['display']) + { + $page['nb_images'] = count($page['cat_elements_id']); + } + else + { + $page['nb_images'] = intval($_GET['display']); + } +} +else +{ + $page['nb_images'] = 5; +} + if (count($page['cat_elements_id']) > 0) |