From 6fd6d2721bcd156c020e05fefc104bd397d3c14d Mon Sep 17 00:00:00 2001 From: plegall Date: Fri, 25 Nov 2005 22:45:52 +0000 Subject: - bug 219 fixed: displaying "all" in "global mode" doesn't display all pictures but only all pictures from current display to end. git-svn-id: http://piwigo.org/svn/branches/branch-1_5@955 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/element_set.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/element_set.php b/admin/element_set.php index 82920d9a8..f02804c27 100644 --- a/admin/element_set.php +++ b/admin/element_set.php @@ -167,7 +167,8 @@ SELECT DISTINCT(image_id) if (!isset($_GET['start']) or !is_numeric($_GET['start']) - or $_GET['start'] < 0) + or $_GET['start'] < 0 + or (isset($_GET['display']) and 'all' == $_GET['display'])) { $page['start'] = 0; } -- cgit v1.2.3