Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/separate-configuration-files-for-na…
Browse files Browse the repository at this point in the history
…vigation-items-10246
  • Loading branch information
Johannes Meyer committed Sep 30, 2015
2 parents 915b559 + 64783fd commit 8b0c820
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions application/forms/Config/Resource/DbResourceForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,14 @@ public function createElements(array $formData)
'description' => $this->translate('The password to use for authentication')
)
);
$this->addElement(
'text',
'charset',
array (
'description' => $this->translate('The character set for the database'),
'label' => $this->translate('Character Set')
)
);
$this->addElement(
'checkbox',
'persistent',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<?php if ($success): ?>
<?= $this->qlink(
$this->translate('Login to Icinga Web 2'),
'authentication/login',
'authentication/login?renderLayout',
null,
array(
'class' => 'button-like login',
Expand All @@ -30,4 +30,4 @@
<pre class="log-output"><?= join("\n\n", array_map(function($a) {
return join("\n", $a);
}, $report)); ?></pre>
</div>
</div>

0 comments on commit 8b0c820

Please sign in to comment.