diff options
-rwxr-xr-x | boot.php | 2 | ||||
-rw-r--r-- | doc/member/member_guide.bb | 2 | ||||
-rw-r--r-- | include/nav.php | 4 | ||||
-rwxr-xr-x | view/tpl/navbar_default.tpl (renamed from view/tpl/nav.tpl) | 0 |
4 files changed, 4 insertions, 4 deletions
@@ -2090,7 +2090,7 @@ function construct_page() { $installing = false; - $navbar = get_config('system','navbar','nav'); + $navbar = get_config('system','navbar','default'); if(App::$profile_uid) { $navbar = get_pconfig(App::$profile_uid,'system','navbar',$navbar); } diff --git a/doc/member/member_guide.bb b/doc/member/member_guide.bb index 0794f24d3..4a9262741 100644 --- a/doc/member/member_guide.bb +++ b/doc/member/member_guide.bb @@ -640,7 +640,7 @@ The condensed notation isn't part of Comanche itself but is recognised by $Proje [navbar]tucson[/navbar] [/code] -Use the 'tucson' navbar template and CSS rules. By default the 'nav' navbar template will be used. +Use the 'tucson' navbar template and CSS rules. By default the 'default' navbar template will be used. [h4]Regions[/h4] diff --git a/include/nav.php b/include/nav.php index b5f713145..0d554fc84 100644 --- a/include/nav.php +++ b/include/nav.php @@ -6,7 +6,7 @@ require_once('include/security.php'); require_once('include/menu.php'); -function nav($template = 'nav') { +function nav($template = 'default') { /** * @@ -248,7 +248,7 @@ EOT; } if(! $tpl) { - $tpl = get_markup_template('nav.tpl'); + $tpl = get_markup_template('navbar_default.tpl'); } App::$page['nav'] .= replace_macros($tpl, array( diff --git a/view/tpl/nav.tpl b/view/tpl/navbar_default.tpl index b6faad0c2..b6faad0c2 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/navbar_default.tpl |