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 | |
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')
-rw-r--r-- | include/acl_selectors.php | 9 | ||||
-rw-r--r-- | include/text.php | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 8da46649c..f158a439b 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -63,6 +63,7 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti $single_group = false; $just_me = false; $custom = false; + $groups = ''; if($allow_cid || $allow_gid || $deny_gid || $deny_cid) { $has_acl = true; @@ -112,11 +113,11 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti $forums_count = 0; $forum_otions = ''; foreach($forums as $f) { - if($f['no_post_perms']) + if(isset($f['no_post_perms'])) continue; - $private = (($f['private_forum']) ? ' (' . t('Private Forum') . ')' : ''); - $selected = (($single_group && $f['hash'] === $allow_cid[0]) ? ' selected = "selected" ' : ''); + $private = ((isset($f['private_forum'])) ? ' (' . t('Private Forum') . ')' : ''); + $selected = (($single_group && isset($f['hash'], $allow_cid[0]) && $f['hash'] === $allow_cid[0]) ? ' selected = "selected" ' : ''); $forum_otions .= '<option id="^' . $f['abook_id'] . '" value="^' . $f['xchan_hash'] . '"' . $selected . '>' . $f['xchan_name'] . $private . '</option>' . "\r\n"; $forums_count++; } @@ -133,7 +134,7 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti $o = replace_macros($tpl, array( '$showall' => $showall_caption, '$onlyme' => t('Only me'), - '$groups' => $groups, + '$groups' => $groups, '$public_selected' => (($has_acl) ? false : true), '$justme_selected' => $just_me, '$custom_selected' => $custom, 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 = ''; |