diff options
author | friendica <info@friendica.com> | 2012-12-16 20:20:29 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-16 20:20:29 -0800 |
commit | e9b5b0f0b424930b87708080c4e6ce671016177b (patch) | |
tree | 436092bdee53c0e2a195bb0cc580c5cbc1c6e731 /include/iquery.php | |
parent | fa8b4e98b727a2af58fea55e93546089fe9bea2b (diff) | |
download | volse-hubzilla-e9b5b0f0b424930b87708080c4e6ce671016177b.tar.gz volse-hubzilla-e9b5b0f0b424930b87708080c4e6ce671016177b.tar.bz2 volse-hubzilla-e9b5b0f0b424930b87708080c4e6ce671016177b.zip |
several small fixes and adjustments
Diffstat (limited to 'include/iquery.php')
-rw-r--r-- | include/iquery.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/iquery.php b/include/iquery.php index 03264de28..0d51134a4 100644 --- a/include/iquery.php +++ b/include/iquery.php @@ -9,8 +9,8 @@ function network_query($a,$arr) { $ordering = (($arr['order'] === 'post') ? "`created`" : "`commented`") . " DESC "; - $itemspage = get_pconfig($arr['uid'],'system','itemspage_network'); - $a->set_pager_itemspage(((intval($itemspage_network)) ? $itemspage_network : 40)); + $itemspage = get_pconfig($arr['uid'],'system','itemspage'); + $a->set_pager_itemspage(((intval($itemspage)) ? $itemspage : 40)); $pager_sql = ((intval($arr['update'])) ? '' : sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']))); |