X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhelp.php;h=3df280dbd64e0698ccdb1df8f183bea93de5b5a1;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=2c8f68ff35fbef42763fd000c95b9df60708ef97;hpb=8821d33f73785884cfce83e7b23d3ef19cc1bc11;p=friendica.git diff --git a/mod/help.php b/mod/help.php index 2c8f68ff35..3df280dbd6 100644 --- a/mod/help.php +++ b/mod/help.php @@ -10,6 +10,7 @@ use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Core\Renderer; use Friendica\Core\System; +use Friendica\Util\Strings; function load_doc_file($s) { @@ -32,6 +33,7 @@ function help_content(App $a) Nav::setSelected('help'); $text = ''; + $filename = ''; if ($a->argc > 1) { $path = ''; @@ -47,7 +49,7 @@ function help_content(App $a) $title = basename($path); $filename = $path; $text = load_doc_file('doc/' . $path . '.md'); - $a->page['title'] = L10n::t('Help:') . ' ' . str_replace('-', ' ', notags($title)); + $a->page['title'] = L10n::t('Help:') . ' ' . str_replace('-', ' ', Strings::escapeTags($title)); } $home = load_doc_file('doc/Home.md');