From feab57e790c79c141e59e7fd578b9d7bb4f66382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannis=20Mo=C3=9Fhammer?= Date: Fri, 30 Aug 2013 16:28:13 +0200 Subject: [PATCH] Fix old constructor syntax being called in DbBackendForm refs #4641 --- .../forms/Config/Authentication/DbBackendForm.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/application/forms/Config/Authentication/DbBackendForm.php b/application/forms/Config/Authentication/DbBackendForm.php index ccd3a7093..c49205161 100644 --- a/application/forms/Config/Authentication/DbBackendForm.php +++ b/application/forms/Config/Authentication/DbBackendForm.php @@ -31,6 +31,7 @@ namespace Icinga\Form\Config\Authentication; use \Icinga\Authentication\Backend\DbUserBackend; use \Icinga\Application\DbAdapterFactory; +use \Zend_Config; /** * Form class for adding/modifying database authentication backends @@ -126,10 +127,13 @@ class DbBackendForm extends BaseBackendForm { try { $name = $this->getBackendName(); - $db = DbAdapterFactory::getDbAdapter( - $this->getValue('backend_' . $this->filterName($name) . '_' . 'resource') - ); - $dbBackend = new DbUserBackend($db); + $dbBackend = new DbUserBackend(new Zend_Config( + array( + 'backend' => 'db', + 'target' => 'user', + 'resource' => $this->getValue('backend_' . $this->filterName($name) . '_resource'), + ) + )); if ($dbBackend->getUserCount() < 1) { $this->addErrorMessage("No users found under the specified database backend"); return false;