aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-10-11 15:13:57 -0700
committerzotlabs <mike@macgirvin.com>2017-10-11 15:13:57 -0700
commit48d2b3afa88feefa4718803408e289af6379dffe (patch)
tree405481302fc6a7b2054c713865d67541cb32b46e /boot.php
parentf273815d8ff45a28b36bd5121c58422dfc28d0ff (diff)
parent56a675f713f3e971b1c9ccb60ab818f583dfc29e (diff)
downloadvolse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.tar.gz
volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.tar.bz2
volse-hubzilla-48d2b3afa88feefa4718803408e289af6379dffe.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/boot.php b/boot.php
index 3feac5177..2819b8d75 100755
--- a/boot.php
+++ b/boot.php
@@ -2090,9 +2090,11 @@ function construct_page() {
$installing = false;
- $navbar = get_config('system','navbar','nav');
- if(App::$profile_uid) {
- $navbar = get_pconfig(App::$profile_uid,'system','navbar',$navbar);
+ $uid = ((App::$profile_uid) ? App::$profile_uid : local_channel());
+
+ $navbar = get_config('system','navbar','default');
+ if($uid) {
+ $navbar = get_pconfig($uid,'system','navbar',$navbar);
}
if($comanche && App::$layout['navbar']) {