]> git.mxchange.org Git - friendica.git/blobdiff - mod/help.php
Parameter should fit ...
[friendica.git] / mod / help.php
index 0512e0f2e0d1839391e2e2c34f95e510030920f4..9a4b275f956185f1890701b9329c2cb167fa209a 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+
+use Friendica\App;
+use Friendica\Core\System;
+
 require_once('library/markdown.php');
 
 if (!function_exists('load_doc_file')) {
@@ -18,7 +22,7 @@ if (!function_exists('load_doc_file')) {
 
 }
 
-function help_content(&$a) {
+function help_content(App $a) {
 
        nav_set_selected('help');
 
@@ -46,7 +50,7 @@ function help_content(&$a) {
                $filename = "Home";
                $a->page['title'] = t('Help');
        } else {
-               $a->page['aside'] = Markdown($home);
+               $a->page['aside'] = Markdown($home, false);
        }
 
        if (!strlen($text)) {
@@ -57,7 +61,7 @@ function help_content(&$a) {
                                ));
        }
 
-       $html = Markdown($text);
+       $html = Markdown($text, false);
 
        if ($filename !== "Home") {
                // create TOC but not for home
@@ -77,7 +81,7 @@ function help_content(&$a) {
                                        if ($level>$lastlevel) $toc.="<ul>";
                                        $idnum[$level]++;
                                        $id = implode("_", array_slice($idnum,1,$level));
-                                       $href = App::get_baseurl()."/help/{$filename}#{$id}";
+                                       $href = System::baseUrl()."/help/{$filename}#{$id}";
                                        $toc .= "<li><a href='{$href}'>".strip_tags($line)."</a></li>";
                                        $line = "<a name='{$id}'></a>".$line;
                                        $lastlevel = $level;
@@ -87,7 +91,7 @@ function help_content(&$a) {
                for($k=0;$k<$lastlevel; $k++) $toc.="</ul>";
                $html = implode("\n",$lines);
 
-               $a->page['aside'] = $toc.$a->page['aside'];
+               $a->page['aside'] = '<section class="help-aside-wrapper">' . $toc . $a->page['aside'] . '</section>';
        }
 
        $html = "