X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhelp.php;h=5db74c15e8f68c9cee6c7e58c49cd0bba8fc1fd9;hb=050ad68b9fc21fc5cf06153d2c6d161d30b241c6;hp=9a4b275f956185f1890701b9329c2cb167fa209a;hpb=5adfeb0bd5fed2f793332056c03bb7c043d5fc69;p=friendica.git diff --git a/mod/help.php b/mod/help.php index 9a4b275f95..5db74c15e8 100644 --- a/mod/help.php +++ b/mod/help.php @@ -1,32 +1,34 @@ page['title'] = t('Help:') . ' ' . str_replace('-', ' ', notags($title)); + $a->page['title'] = L10n::t('Help:') . ' ' . str_replace('-', ' ', notags($title)); } + $home = load_doc_file('doc/Home.md'); if (!$text) { $text = $home; $filename = "Home"; - $a->page['title'] = t('Help'); + $a->page['title'] = L10n::t('Help'); } else { - $a->page['aside'] = Markdown($home, false); + $a->page['aside'] = Markdown::convert($home, false); } if (!strlen($text)) { - header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found')); + header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . L10n::t('Not Found')); $tpl = get_markup_template("404.tpl"); - return replace_macros($tpl, array( - '$message' => t('Page not found.') - )); + return replace_macros($tpl, [ + '$message' => L10n::t('Page not found.') + ]); } - $html = Markdown($text, false); + $html = Markdown::convert($text, false); if ($filename !== "Home") { // create TOC but not for home $lines = explode("\n", $html); - $toc="

TOC