diff options
author | friendica <info@friendica.com> | 2013-11-21 14:19:31 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-21 14:19:31 -0800 |
commit | 6ddb57e0da54b291504638247a77889f5b631caa (patch) | |
tree | 296e6bc0742324c39f1c2f467dcfda3bf90e5194 /mod/help.php | |
parent | 4791b2fd9c6dabc9ebb1f42a4993185d85493261 (diff) | |
download | volse-hubzilla-6ddb57e0da54b291504638247a77889f5b631caa.tar.gz volse-hubzilla-6ddb57e0da54b291504638247a77889f5b631caa.tar.bz2 volse-hubzilla-6ddb57e0da54b291504638247a77889f5b631caa.zip |
mod/help - load Site.md (if it exists) before Home.md. Site.md will typically provide local resources. Site.md can either include the complete contents of Help.md or link to it, as you choose.
Diffstat (limited to 'mod/help.php')
-rw-r--r-- | mod/help.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mod/help.php b/mod/help.php index 770a0a8af..10061b851 100644 --- a/mod/help.php +++ b/mod/help.php @@ -25,9 +25,13 @@ function help_content(&$a) { $text = ''; - if($a->argc > 1) { + if(argc() > 1) { $text = load_doc_file('doc/' . $a->argv[1] . '.md'); - $a->page['title'] = t('Help:') . ' ' . str_replace('-',' ',notags($a->argv[1])); + $a->page['title'] = t('Help:') . ' ' . str_replace('-',' ',notags(argv(1))); + } + if(! $text) { + $text = load_doc_file('doc/Site.md'); + $a->page['title'] = t('Help'); } if(! $text) { $text = load_doc_file('doc/Home.md'); |