diff options
author | Thomas Willingham <founder@kakste.com> | 2014-02-24 05:11:56 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2014-02-24 05:11:56 +0000 |
commit | 8284901f9eda97457da1d4d5a74a0e24ee9249b3 (patch) | |
tree | 9ebbb635e54cccaaf6a2ed1bc7cb8a57e46094d3 /mod/help.php | |
parent | 2ccff45221905981c6942f1f3064d477113e959e (diff) | |
download | volse-hubzilla-8284901f9eda97457da1d4d5a74a0e24ee9249b3.tar.gz volse-hubzilla-8284901f9eda97457da1d4d5a74a0e24ee9249b3.tar.bz2 volse-hubzilla-8284901f9eda97457da1d4d5a74a0e24ee9249b3.zip |
Make bbcode the default doco ready for the next commit
Diffstat (limited to 'mod/help.php')
-rw-r--r-- | mod/help.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/help.php b/mod/help.php index a4ccd1cfe..bbfeb9a6c 100644 --- a/mod/help.php +++ b/mod/help.php @@ -60,7 +60,8 @@ function help_content(&$a) { $a->page['title'] = t('Help'); } if(! $text) { - $text = load_doc_file('doc/Home.md'); + $doctype = 'bbcode'; + $text = load_doc_file('doc/main.bb'); $a->page['title'] = t('Help'); } |