diff options
Diffstat (limited to '')
-rw-r--r-- | admin/element_set.php | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |