aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Controllers/HelpController.php
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Controllers/HelpController.php')
-rw-r--r--h-source/Application/Controllers/HelpController.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/h-source/Application/Controllers/HelpController.php b/h-source/Application/Controllers/HelpController.php
index cd202ae..78a31b9 100644
--- a/h-source/Application/Controllers/HelpController.php
+++ b/h-source/Application/Controllers/HelpController.php
@@ -20,23 +20,22 @@
if (!defined('EG')) die('Direct access not allowed!');
-class HelpController extends BaseController
+class HelpController extends WikiController
{
public function __construct($model, $controller, $queryString)
{
-
$this->_topMenuClasses['help'] = " class='currentitem'";
parent::__construct($model, $controller, $queryString);
+ $this->_topMenuClasses['wiki'] = null;
+
+ $data['tm'] = $this->_topMenuClasses;
+
$data['title'] = 'help index - '.Website::$generalName;
+
$this->append($data);
}
-
- public function index($lang = 'en')
- {
- $this->cleverLoad('index');
- }
} \ No newline at end of file