diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-10 18:50:01 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-10 18:50:01 -0700 |
commit | 09b4660c7d8d15cf2419202116199a725c7c109c (patch) | |
tree | dd2de88c0792e4cfecba69cead35c6705512f984 /include/nav.php | |
parent | 69394c1680cc72b5c4b43c8d321a5348ca75be35 (diff) | |
download | volse-hubzilla-09b4660c7d8d15cf2419202116199a725c7c109c.tar.gz volse-hubzilla-09b4660c7d8d15cf2419202116199a725c7c109c.tar.bz2 volse-hubzilla-09b4660c7d8d15cf2419202116199a725c7c109c.zip |
rename view/tpl/nav.tpl to navbar_default.tpl so that all navbar selection code is consistent
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 4 |
1 files changed, 2 insertions, 2 deletions
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( |