diff options
author | Mario <mario@mariovavti.com> | 2021-03-10 11:14:03 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-10 11:14:03 +0000 |
commit | c8050ea86587b460769a32be5c55a91fb91c2414 (patch) | |
tree | 1579f58a6065e73ddf5dbbefedcc4d8e0bca9e08 /boot.php | |
parent | 15faf01ec960fff88a1f9c83fb6d251319cecea7 (diff) | |
parent | 11d831e4d7bd4163ea518892f541252ce1acea2e (diff) | |
download | volse-hubzilla-c8050ea86587b460769a32be5c55a91fb91c2414.tar.gz volse-hubzilla-c8050ea86587b460769a32be5c55a91fb91c2414.tar.bz2 volse-hubzilla-c8050ea86587b460769a32be5c55a91fb91c2414.zip |
Merge branch 'php8fixes' into 'dev'
More PHP 8 fixes
See merge request hubzilla/core!1923
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2316,13 +2316,14 @@ function construct_page() { $navbar = get_pconfig($uid,'system','navbar',$navbar); } - if($comanche && App::$layout['navbar']) { + if($comanche && isset(App::$layout['navbar'])) { $navbar = App::$layout['navbar']; } if (App::$module == 'setup') { $installing = true; - } else { + } + else { nav($navbar); } |