Merge pull request #7871 from annando/notice
Fix a notice in gcontact.php
This commit is contained in:
commit
faa63632bf
1 changed files with 2 additions and 1 deletions
|
@ -627,10 +627,11 @@ class GContact
|
|||
$contact['about'] = $contact['about'] ?? '';
|
||||
$contact['generation'] = $contact['generation'] ?? 0;
|
||||
|
||||
$fields = ['name' => $contact['name'], 'nick' => $contact['nick'], 'addr' => $contact['addr'], 'network' => $contact['network'],
|
||||
$fields = ['name' => $contact['name'], 'nick' => $contact['nick'] ?? '', 'addr' => $contact['addr'] ?? '', 'network' => $contact['network'],
|
||||
'url' => $contact['url'], 'nurl' => Strings::normaliseLink($contact['url']), 'photo' => $contact['photo'],
|
||||
'created' => DateTimeFormat::utcNow(), 'updated' => DateTimeFormat::utcNow(), 'location' => $contact['location'],
|
||||
'about' => $contact['about'], 'hide' => $contact['hide'], 'generation' => $contact['generation']];
|
||||
|
||||
DBA::insert('gcontact', $fields);
|
||||
|
||||
$condition = ['nurl' => Strings::normaliseLink($contact['url'])];
|
||||
|
|
Loading…
Reference in a new issue