Avoid some more warning

This commit is contained in:
Michael 2019-04-09 11:44:35 +00:00
parent d58147413f
commit 8748aff110
1 changed files with 3 additions and 1 deletions

View File

@ -1393,7 +1393,9 @@ class Contact extends BaseObject
}
}
self::updateAvatar($data["photo"], $uid, $contact_id);
if (!empty($data['photo'])) {
self::updateAvatar($data['photo'], $uid, $contact_id);
}
$fields = ['url', 'nurl', 'addr', 'alias', 'name', 'nick', 'keywords', 'location', 'about', 'avatar-date', 'pubkey'];
$contact = DBA::selectFirst('contact', $fields, ['id' => $contact_id]);