mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 11:43:42 +00:00
Issue 3636: Avoid warning messages
This commit is contained in:
parent
403114fd35
commit
582e5d9bcc
1 changed files with 5 additions and 2 deletions
|
@ -1407,9 +1407,12 @@ function pumpio_getallusers(&$a, $uid) {
|
|||
$success = false;
|
||||
}
|
||||
|
||||
foreach ($users->items AS $user)
|
||||
if (is_array($users->items)) {
|
||||
foreach ($users->items AS $user) {
|
||||
pumpio_get_contact($uid, $user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function pumpio_queue_hook(&$a,&$b) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue