diff options
author | Mario <mario@mariovavti.com> | 2021-03-10 13:18:12 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-10 13:18:12 +0000 |
commit | 440a132c6be512314484b7b331fab5dab92e5fad (patch) | |
tree | b182fb923f7a6de0c0149c423fb8da6c502b0b0e /boot.php | |
parent | f8447521a84c0eb30c08da212e8156256558617b (diff) | |
parent | c8050ea86587b460769a32be5c55a91fb91c2414 (diff) | |
download | volse-hubzilla-440a132c6be512314484b7b331fab5dab92e5fad.tar.gz volse-hubzilla-440a132c6be512314484b7b331fab5dab92e5fad.tar.bz2 volse-hubzilla-440a132c6be512314484b7b331fab5dab92e5fad.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
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); } |