diff options
author | Mario <mario@mariovavti.com> | 2021-03-11 13:03:54 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-11 13:03:54 +0000 |
commit | f980c2e3de0339536d58c9ba91799106074b239e (patch) | |
tree | a7e043f8110af8155360fbc108a862beb00dc970 /include/text.php | |
parent | db0e1c9f31022453d44e68183673c55c8f880b3e (diff) | |
download | volse-hubzilla-f980c2e3de0339536d58c9ba91799106074b239e.tar.gz volse-hubzilla-f980c2e3de0339536d58c9ba91799106074b239e.tar.bz2 volse-hubzilla-f980c2e3de0339536d58c9ba91799106074b239e.zip |
php8: daily warning fixes (deriving from mod network)
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 1cfee4c87..85950c58b 100644 --- a/include/text.php +++ b/include/text.php @@ -3691,7 +3691,7 @@ function get_forum_channels($uid) { if(! $uid) return; - if(App::$data['forum_channels']) + if(isset(App::$data['forum_channels'])) return App::$data['forum_channels']; $xf = ''; |