diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/nav.php b/include/nav.php index b8b65f84d..703d8da40 100644 --- a/include/nav.php +++ b/include/nav.php @@ -61,6 +61,12 @@ function nav(&$a) { $a->page['nav'] .= '<a id="nav-register-link" class="nav-commlink" href="register" >' . t('Register') . "</a>\r\n"; + $help_url = get_config('system','help_url'); + if(! $help_url) + $help_url = 'http://github.com/friendika/friendika/wiki'; + + $a->page['nav'] .= '<a id="nav-help-link" class="nav-link" target="friendika-help" href="' . $help_url . '">' . t('Help') . "</a>\r\n"; + if(strlen($a->apps)) { $a->page['nav'] .= '<a id="nav-apps-link" class="nav-link" href="apps">' . t('Apps') . "</a>\r\n"; } |