mirror of
https://github.com/friendica/friendica
synced 2025-04-27 02:30:10 +00:00
Remove pager parameter from conversation()
- Add getUrlParameter() Javascript function to determine current page
This commit is contained in:
parent
756de11cda
commit
0b0309ce8f
11 changed files with 42 additions and 22 deletions
|
@ -1815,13 +1815,13 @@ class Contact
|
|||
|
||||
$items = Item::inArray($r);
|
||||
|
||||
$o = conversation($a, $items, $pager, 'contacts', $update, false, 'commented', local_user());
|
||||
$o = conversation($a, $items, 'contacts', $update, false, 'commented', local_user());
|
||||
} else {
|
||||
$r = Item::selectForUser(local_user(), [], $condition, $params);
|
||||
|
||||
$items = Item::inArray($r);
|
||||
|
||||
$o = conversation($a, $items, $pager, 'contact-posts', false);
|
||||
$o = conversation($a, $items, 'contact-posts', false);
|
||||
}
|
||||
|
||||
if (!$update) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue