diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-04-05 16:59:32 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-04-05 16:59:32 +0200 |
commit | bd29551f9aec4c463c02a3c57a5d6d94c9ee318d (patch) | |
tree | f34dea11108514d26b674775bc5e756c17a33db0 /include/nav.php | |
parent | 32ccdd1f57dc036b9917c9f5577d0ef4298d959c (diff) | |
download | volse-hubzilla-bd29551f9aec4c463c02a3c57a5d6d94c9ee318d.tar.gz volse-hubzilla-bd29551f9aec4c463c02a3c57a5d6d94c9ee318d.tar.bz2 volse-hubzilla-bd29551f9aec4c463c02a3c57a5d6d94c9ee318d.zip |
fix contextual help
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/nav.php b/include/nav.php index 4bcef4425..e8c1a2e92 100644 --- a/include/nav.php +++ b/include/nav.php @@ -151,8 +151,8 @@ EOT; if(! get_config('system','hide_help')) { require_once('mod/help.php'); - $context_help = load_doc_file('doc/context/' . $a->cmd . '/help.html'); - $parentdir = dirname($a->cmd); + $context_help = load_doc_file('doc/context/' . App::$cmd . '/help.html'); + $parentdir = dirname(App::$cmd); while (! $context_help && $parentdir !== '.') { $context_help = load_doc_file('doc/context/' . $parentdir . '/help.html'); $parentdir = dirname($parentdir); @@ -266,7 +266,6 @@ $powered_by = ''; * */ function nav_set_selected($item){ - $a = get_app(); App::$nav_sel = array( 'community' => null, 'network' => null, |