Fix SQL problem with "not null"

This commit is contained in:
Michael 2019-07-13 07:39:53 +00:00
parent 002963f198
commit 2df17fc0c0

View file

@ -924,7 +924,7 @@ class GContact
} }
// These fields are having different names but the same content // These fields are having different names but the same content
$gcontact['server_url'] = $contact['baseurl']; $gcontact['server_url'] = defaults($contact, 'baseurl', ''); // "baseurl" can be null, "server_url" not
$gcontact['nsfw'] = $contact['sensitive']; $gcontact['nsfw'] = $contact['sensitive'];
$gcontact['hide'] = $contact['unsearchable']; $gcontact['hide'] = $contact['unsearchable'];
$gcontact['archived'] = $contact['archive']; $gcontact['archived'] = $contact['archive'];