aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2014-03-12 17:13:58 +0000
committerThomas Willingham <founder@kakste.com>2014-03-12 17:13:58 +0000
commit031b888e2c447048b5459e5e8f1a2afd34f695cf (patch)
tree565041aa774057a84f1b3a7af0742efe64499d96 /mod
parent3f337dad2c783e62338a88887d1ef3d7754da410 (diff)
downloadvolse-hubzilla-031b888e2c447048b5459e5e8f1a2afd34f695cf.tar.gz
volse-hubzilla-031b888e2c447048b5459e5e8f1a2afd34f695cf.tar.bz2
volse-hubzilla-031b888e2c447048b5459e5e8f1a2afd34f695cf.zip
Stick help in a template
Diffstat (limited to 'mod')
-rw-r--r--mod/help.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/mod/help.php b/mod/help.php
index aa0ee8ae6..81ecd6ba9 100644
--- a/mod/help.php
+++ b/mod/help.php
@@ -76,14 +76,18 @@ function help_content(&$a) {
$text = preg_replace_callback("/#include (.*?)\;/ism", 'preg_callback_help_include', $text);
if($doctype === 'html')
- return $text;
+ $content = $text;
if($doctype === 'markdown')
- return Markdown($text);
+ $content = Markdown($text);
if($doctype === 'bbcode') {
require_once('include/bbcode.php');
- return bbcode($text);
+ $content = bbcode($text);
}
+ return replace_macros(get_markup_template("help.tpl"), array(
+ '$content' => $content
+ ));
+
}