Update Pager->__construct calls for minimal use cases

This commit is contained in:
Hypolite Petovan 2018-10-24 11:50:37 -04:00
parent 7c0b591043
commit 74e80f137b
4 changed files with 4 additions and 4 deletions

View file

@ -308,7 +308,7 @@ function profile_content(App $a, $update = 0)
$itemspage_network = $a->force_max_items;
}
$pager = new Pager($a->query_string, null, $itemspage_network);
$pager = new Pager($a->query_string, $itemspage_network);
$pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());