diff --git a/templates/PhotosIndex.php b/templates/PhotosIndex.php index b01a9230..adef18d0 100644 --- a/templates/PhotosIndex.php +++ b/templates/PhotosIndex.php @@ -12,7 +12,6 @@ class PhotosIndex extends Template protected $show_edit_buttons; protected $show_headers; protected $show_labels; - protected $row_limit = 1000; protected $previous_header = ''; protected $url_suffix; @@ -47,11 +46,12 @@ class PhotosIndex extends Template echo '
'; - for ($i = $this->row_limit; $i > 0 && $row = $this->mosaic->getRow(); $i--) + $i = 0; + while ($row = $this->mosaic->getRow()) { - list($photos, $what) = $row; + [$photos, $what] = $row; $this->header($photos); - $this->$what($photos, $i % 2); + $this->$what($photos, ($i++) % 2); } echo '