*/*: last titles removed; closes #403

This commit is contained in:
Franco Fichtner 2017-12-24 15:33:02 +01:00
parent af0b128fa0
commit b3f9954d8e
3 changed files with 0 additions and 4 deletions

View file

@ -39,7 +39,6 @@ class IndexController extends \OPNsense\Base\IndexController
{
public function indexAction()
{
$this->view->title = gettext("Redis");
$this->view->settings = $this->getForm("settings");
$this->view->pick('OPNsense/Redis/index');
}

View file

@ -36,8 +36,6 @@ class IndexController extends \OPNsense\Base\IndexController
{
public function indexAction()
{
// set page title, used by the standard template in layouts/default.volt.
$this->view->title = "Hello World";
// pick the template to serve to our users.
$this->view->pick('OPNsense/HelloWorld/index');
// fetch form data "general" in

View file

@ -46,7 +46,6 @@ class IndexController extends \OPNsense\Base\IndexController
$this->view->clamav_installed = (trim($backend->configdRun('firmware plugin clamav')) == '1');
$this->view->redis_installed = (trim($backend->configdRun('firmware plugin redis')) == '1');
$this->view->redis_plugin_enabled = ((string)((new RSpamd())->general->enable_redis_plugin)) == '1';
$this->view->title = gettext("Rspamd Mail Protection");
$this->view->settings = $this->getForm("settings");
$this->view->pick('OPNsense/Rspamd/index');
}