diff options
author | friendica <info@friendica.com> | 2014-09-07 20:05:38 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-07 20:05:38 -0700 |
commit | 9d03f635119b69c9ed1865b77ae397488d1dd599 (patch) | |
tree | ad6958737a609b1d400093b99c99ce502d90816a | |
parent | 75fc3a8cebbf727b708ae164e0f4208cb3072b95 (diff) | |
download | volse-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-x | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |