mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Fix Undefined array key.
- Address https://github.com/friendica/friendica/issues/13761#issuecomment-1878806230
This commit is contained in:
parent
b515292b1c
commit
5cd5fa8403
1 changed files with 2 additions and 2 deletions
|
@ -132,8 +132,8 @@ class Community extends Timeline
|
|||
$pager = new BoundariesPager(
|
||||
$this->l10n,
|
||||
$this->args->getQueryString(),
|
||||
$items[0]['received'],
|
||||
$items[count($items) - 1]['received'],
|
||||
$items[array_key_first($items)]['received'],
|
||||
$items[array_key_last($items)]['received'],
|
||||
$this->itemsPerPage
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue