Merge pull request #8733 from annando/fix-notice
Fix Notice "Undefined index: subscribe"
This commit is contained in:
commit
2e0151bec0
|
@ -304,6 +304,10 @@ class APContact
|
|||
$apcontact['baseurl'] = null;
|
||||
}
|
||||
|
||||
if (empty($apcontact['subscribe'])) {
|
||||
$apcontact['subscribe'] = null;
|
||||
}
|
||||
|
||||
if (!empty($apcontact['baseurl']) && empty($fetched_contact['gsid'])) {
|
||||
$apcontact['gsid'] = GServer::getID($apcontact['baseurl']);
|
||||
} elseif (!empty($fetched_contact['gsid'])) {
|
||||
|
|
Loading…
Reference in a new issue