Browse Source
Merge pull request #7689 from annando/fix-notice
Fix notice "Undefined index: openRegistrations"
pull/7692/head
Philipp
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Protocol/PortableContact.php
|
|
@ -720,7 +720,7 @@ class PortableContact |
|
|
|
|
|
|
|
$server['register_policy'] = Register::CLOSED; |
|
|
|
|
|
|
|
if (is_bool($nodeinfo['openRegistrations']) && $nodeinfo['openRegistrations']) { |
|
|
|
if (isset($nodeinfo['openRegistrations']) && is_bool($nodeinfo['openRegistrations']) && $nodeinfo['openRegistrations']) { |
|
|
|
$server['register_policy'] = Register::OPEN; |
|
|
|
} |
|
|
|
|
|
|
|