Merge pull request #5227 from MrPetovan/bug/fix-php72-notice-model-contact
Fix PHP 7.2 Warning in Model\Contact
This commit is contained in:
commit
b729e8b21c
|
@ -1070,9 +1070,11 @@ class Contact extends BaseObject
|
|||
'limit' => [$a->pager['start'], $a->pager['itemspage']]];
|
||||
$r = Item::select(local_user(), [], $condition, $params);
|
||||
|
||||
$o = conversation($a, dba::inArray($r), 'contact-posts', false);
|
||||
$items = dba::inArray($r);
|
||||
|
||||
$o = conversation($a, $items, 'contact-posts', false);
|
||||
|
||||
$o .= alt_pager($a, count($r));
|
||||
$o .= alt_pager($a, count($items));
|
||||
|
||||
return $o;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue