diff options
author | marijus <mario@mariovavti.com> | 2014-09-11 13:07:08 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-09-11 13:07:08 +0200 |
commit | 1f16bad9d97d63bfaf6f9f980de9d7a96c09ba24 (patch) | |
tree | 07ff7c09b032d4ec2851c5511a84c01a4db8cef3 /mod/photos.php | |
parent | 5e54f470978e8208c000476faa009434fc98d3f8 (diff) | |
download | volse-hubzilla-1f16bad9d97d63bfaf6f9f980de9d7a96c09ba24.tar.gz volse-hubzilla-1f16bad9d97d63bfaf6f9f980de9d7a96c09ba24.tar.bz2 volse-hubzilla-1f16bad9d97d63bfaf6f9f980de9d7a96c09ba24.zip |
set items/page back to 60
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/photos.php b/mod/photos.php index e50afd557..f2df894c0 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -635,7 +635,7 @@ function photos_content(&$a) { ); if(count($r)) { $a->set_pager_total(count($r)); - $a->set_pager_itemspage(30); + $a->set_pager_itemspage(60); } if($_GET['order'] === 'posted') @@ -1168,7 +1168,7 @@ function photos_content(&$a) { ); if(count($r)) { $a->set_pager_total(count($r)); - $a->set_pager_itemspage(30); + $a->set_pager_itemspage(60); } $r = q("SELECT `resource_id`, `id`, `filename`, type, `album`, max(`scale`) AS `scale` FROM `photo` |