Remove title from general config

refs #5543
This commit is contained in:
Eric Lippmann 2015-10-01 00:02:02 +02:00
parent d31983bf4f
commit f960874dd4
2 changed files with 6 additions and 10 deletions

View File

@ -3,10 +3,10 @@
namespace Icinga\Forms\Config;
use Icinga\Web\Notification;
use Icinga\Forms\ConfigForm;
use Icinga\Forms\Config\General\LoggingConfigForm;
use Icinga\Forms\Config\General\ApplicationConfigForm;
use Icinga\Forms\Config\General\LoggingConfigForm;
use Icinga\Forms\ConfigForm;
use Icinga\Web\Notification;
/**
* Form class for application-wide and logging specific settings
@ -20,7 +20,6 @@ class GeneralConfigForm extends ConfigForm
{
$this->setName('form_config_general');
$this->setSubmitLabel($this->translate('Save Changes'));
$this->setTitle($this->translate('General Configuration'));
}
/**

View File

@ -1,9 +1,6 @@
<div class="controls" data-base-target="_main">
<?= $this->tabs->render($this); ?>
<div class="controls">
<?= $tabs ?>
</div>
<div class="content">
<?php if (isset($this->messageBox)): ?>
<?= $this->messageBox->render() ?>
<?php endif ?>
<?= $this->form ?>
<?= $form ?>
</div>