From e416a445a3d372fe6a42d49023758aa64b2d21be Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 29 Sep 2015 19:37:18 +0200 Subject: [PATCH 1/2] Wizard: Rerender layout on login fixes #9789 --- .../setup/application/views/scripts/index/parts/finish.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/setup/application/views/scripts/index/parts/finish.phtml b/modules/setup/application/views/scripts/index/parts/finish.phtml index a56c07c3a..847ae5b92 100644 --- a/modules/setup/application/views/scripts/index/parts/finish.phtml +++ b/modules/setup/application/views/scripts/index/parts/finish.phtml @@ -8,7 +8,7 @@ qlink( $this->translate('Login to Icinga Web 2'), - 'authentication/login', + 'authentication/login?renderLayout', null, array( 'class' => 'button-like login', @@ -30,4 +30,4 @@
- \ No newline at end of file + From 64783fd10e8e09c5c558f48913330cadf17a8162 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 29 Sep 2015 19:37:36 +0200 Subject: [PATCH 2/2] Allow to set the character set for database resources --- application/forms/Config/Resource/DbResourceForm.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/application/forms/Config/Resource/DbResourceForm.php b/application/forms/Config/Resource/DbResourceForm.php index 2487ef375..c60ba65a9 100644 --- a/application/forms/Config/Resource/DbResourceForm.php +++ b/application/forms/Config/Resource/DbResourceForm.php @@ -138,6 +138,14 @@ class DbResourceForm extends Form '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',