more spaces

This commit is contained in:
Michael 2017-03-13 05:57:37 +00:00
parent 80e58964ce
commit eb6a6228f7
4 changed files with 9 additions and 9 deletions

View File

@ -715,7 +715,7 @@ function posts_from_gcontact(App $a, $gcontact_id) {
intval($a->pager['itemspage']) intval($a->pager['itemspage'])
); );
$o = conversation($a,$r,'community',false); $o = conversation($a, $r, 'community', false);
$o .= alt_pager($a, count($r)); $o .= alt_pager($a, count($r));
@ -758,7 +758,7 @@ function posts_from_contact_url(App $a, $contact_url) {
intval($a->pager['itemspage']) intval($a->pager['itemspage'])
); );
$o = conversation($a,$r,'community',false); $o = conversation($a, $r, 'community', false);
$o .= alt_pager($a, count($r)); $o .= alt_pager($a, count($r));

View File

@ -84,9 +84,9 @@ function community_content(App $a, $update = 0) {
// we behave the same in message lists as the search module // we behave the same in message lists as the search module
$o .= conversation($a,$s,'community',$update); $o .= conversation($a, $s, 'community', $update);
$o .= alt_pager($a,count($r)); $o .= alt_pager($a, count($r));
return $o; return $o;
} }

View File

@ -773,13 +773,13 @@ function network_content(App $a, $update = 0) {
$mode = (($nouveau) ? 'network-new' : 'network'); $mode = (($nouveau) ? 'network-new' : 'network');
$o .= conversation($a,$items,$mode,$update); $o .= conversation($a, $items, $mode, $update);
if (!$update) { if (!$update) {
if (get_pconfig(local_user(),'system','infinite_scroll')) { if (get_pconfig(local_user(), 'system', 'infinite_scroll')) {
$o .= scroll_loader(); $o .= scroll_loader();
} else { } else {
$o .= alt_pager($a,count($items)); $o .= alt_pager($a, count($items));
} }
} }

View File

@ -318,10 +318,10 @@ function profile_content(App $a, $update = 0) {
); );
} }
$o .= conversation($a,$items,'profile',$update); $o .= conversation($a, $items, 'profile', $update);
if (!$update) { if (!$update) {
$o .= alt_pager($a,count($items)); $o .= alt_pager($a, count($items));
} }
return $o; return $o;