Update Backendpath for Authentication

Backends are now located in the Icinga/Authentication/Backend folder

refs #4265
This commit is contained in:
Jannis Moßhammer 2013-06-10 16:38:41 +02:00 committed by Marius Hein
parent e325ad3417
commit da43813de9
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}