diff options
author | Mario <mario@mariovavti.com> | 2021-02-18 13:29:15 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-18 13:29:15 +0000 |
commit | 65068479b9a7afd0d210550bf54fb3b19ed1fbf2 (patch) | |
tree | 0224c847e56be4ae6a25029fbe1c0537815ef128 /Zotlabs/Web/WebServer.php | |
parent | 92f3c5ae2191dbffcc327dd1068e692467dc24dd (diff) | |
download | volse-hubzilla-65068479b9a7afd0d210550bf54fb3b19ed1fbf2.tar.gz volse-hubzilla-65068479b9a7afd0d210550bf54fb3b19ed1fbf2.tar.bz2 volse-hubzilla-65068479b9a7afd0d210550bf54fb3b19ed1fbf2.zip |
php8 warnings
Diffstat (limited to 'Zotlabs/Web/WebServer.php')
-rw-r--r-- | Zotlabs/Web/WebServer.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Web/WebServer.php b/Zotlabs/Web/WebServer.php index ac792dd69..de0d5a883 100644 --- a/Zotlabs/Web/WebServer.php +++ b/Zotlabs/Web/WebServer.php @@ -112,7 +112,7 @@ class WebServer { // now that we've been through the module content, see if the page reported // a permission problem and if so, a 403 response would seem to be in order. - if(is_array($_SESSION['sysmsg']) && stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) { + if(isset($_SESSION['sysmsg']) && is_array($_SESSION['sysmsg']) && stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) { header($_SERVER['SERVER_PROTOCOL'] . ' 403 ' . t('Permission denied.')); } @@ -137,9 +137,9 @@ class WebServer { private function create_channel_links() { - /* Initialise the Link: response header if this is a channel page. + /* Initialise the Link: response header if this is a channel page. * This cannot be done inside the channel module because some protocol - * addons over-ride the module functions and these links are common + * addons over-ride the module functions and these links are common * to all protocol drivers; thus doing it here avoids duplication. */ @@ -156,7 +156,7 @@ class WebServer { 'url' => z_root() . '/.well-known/webfinger?f=&resource=acct%3A' . argv(1) . '%40' . \App::get_hostname() ], ]; - $x = [ 'channel_address' => argv(1), 'channel_links' => \App::$channel_links ]; + $x = [ 'channel_address' => argv(1), 'channel_links' => \App::$channel_links ]; call_hooks('channel_links', $x ); \App::$channel_links = $x['channel_links']; header('Link: ' . \App::get_channel_links()); |