Merge pull request #1994 from tobiasd/20151028-issue1974

lower number of postings displayed per page for not logged in users
This commit is contained in:
Michael Vogel 2015-10-28 23:30:16 +01:00
commit d2dfe54fc7
1 changed files with 2 additions and 2 deletions

View File

@ -268,10 +268,10 @@ function profile_content(&$a, $update = 0) {
// accordingly
if ($a->is_mobile) {
$itemspage_network = get_pconfig(local_user(),'system','itemspage_mobile_network');
$itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
$itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 10);
} else {
$itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
$itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
$itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
}
// now that we have the user settings, see if the theme forces
// a maximum item number which is lower then the user choice