aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-07 20:05:38 -0700
committerfriendica <info@friendica.com>2014-09-07 20:05:38 -0700
commit9d03f635119b69c9ed1865b77ae397488d1dd599 (patch)
treead6958737a609b1d400093b99c99ce502d90816a
parent75fc3a8cebbf727b708ae164e0f4208cb3072b95 (diff)
downloadvolse-hubzilla-9d03f635119b69c9ed1865b77ae397488d1dd599.tar.gz
volse-hubzilla-9d03f635119b69c9ed1865b77ae397488d1dd599.tar.bz2
volse-hubzilla-9d03f635119b69c9ed1865b77ae397488d1dd599.zip
set the default items-per-page for the entire app to 60
-rwxr-xr-xboot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 0c2cfafbf..941d6f6f3 100755
--- a/boot.php
+++ b/boot.php
@@ -807,7 +807,7 @@ class App {
*/
$this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
- $this->pager['itemspage'] = 50;
+ $this->pager['itemspage'] = 60;
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
if($this->pager['start'] < 0)
$this->pager['start'] = 0;