From da43813de900f84291303a7b4c5592756a07a6bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannis=20Mo=C3=9Fhammer?= Date: Mon, 10 Jun 2013 16:38:41 +0200 Subject: [PATCH] Update Backendpath for Authentication Backends are now located in the Icinga/Authentication/Backend folder refs #4265 --- library/Icinga/Authentication/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Authentication/Manager.php b/library/Icinga/Authentication/Manager.php index 309cdaf6a..e1f2abe17 100644 --- a/library/Icinga/Authentication/Manager.php +++ b/library/Icinga/Authentication/Manager.php @@ -64,7 +64,7 @@ class Manager private function initBackend($authenticationTarget, $authenticationSource) { $userbackend = ucwords(strtolower($authenticationSource->backend)); - $class = '\\Icinga\\Authentication\\' . $backend . $authenticationTarget. 'Backend'; + $class = '\\Icinga\\Authentication\\Backend\\' . $backend . $authenticationTarget. 'Backend'; return new $class($authenticationSource); }