diff options
Diffstat (limited to 'app/class/Controllerinfo.php')
-rw-r--r-- | app/class/Controllerinfo.php | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/app/class/Controllerinfo.php b/app/class/Controllerinfo.php index fd8232c..7b27cea 100644 --- a/app/class/Controllerinfo.php +++ b/app/class/Controllerinfo.php @@ -5,8 +5,7 @@ use Michelf\MarkdownExtra; class Controllerinfo extends Controller { - - public function __construct($render) { + public function __construct($render){ parent::__construct($render); } @@ -20,21 +19,14 @@ class Controllerinfo extends Controller $htmlman = file_get_contents(Model::MAN_FILE); $htmlman = $render->rendermanual($htmlman); - $summary = $render->sumparser(2, 3); - + $summary = $render->sumparser(2, 4); $this->showtemplate('info', ['version' => getversion(), 'manual' => $htmlman, 'summary' => $summary]); } - } } - - - - - } |