diff options
author | git-marijus <mario@mariovavti.com> | 2016-11-28 13:44:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-28 13:44:41 +0100 |
commit | 683a09781ad9c9be00ce67e35f560e6fca051f3b (patch) | |
tree | bb4477d49f872b91913d77f8967ffea61f6bcead /include/help.php | |
parent | d8774cda8ed0bec9dbbe8638fd7af5307d569805 (diff) | |
parent | 5bcb373c00a500cd8120df41bc0788172fe7e347 (diff) | |
download | volse-hubzilla-683a09781ad9c9be00ce67e35f560e6fca051f3b.tar.gz volse-hubzilla-683a09781ad9c9be00ce67e35f560e6fca051f3b.tar.bz2 volse-hubzilla-683a09781ad9c9be00ce67e35f560e6fca051f3b.zip |
Merge pull request #602 from anaqreon/doco
Update context help content and context page element focus feature.
Diffstat (limited to 'include/help.php')
-rw-r--r-- | include/help.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/help.php b/include/help.php index f7fffc4d4..6efeeb57e 100644 --- a/include/help.php +++ b/include/help.php @@ -15,7 +15,7 @@ function get_help_content($tocpath = false) { $text = ''; $path = (($tocpath !== false) ? $tocpath : ''); - + if($tocpath === false && argc() > 1) { $path = ''; for($x = 1; $x < argc(); $x ++) { @@ -68,7 +68,7 @@ function get_help_content($tocpath = false) { } if($doctype === 'html') - $content = $text; + $content = parseIdentityAwareHTML($text); if($doctype === 'markdown') { require_once('library/markdown.php'); # escape #include tags |