more spaces
This commit is contained in:
parent
80e58964ce
commit
eb6a6228f7
|
@ -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));
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user