diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-06-13 19:32:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-13 19:32:54 +0200 |
commit | 990ac34aaa707652614820848e6b740763936831 (patch) | |
tree | 9ee2dc23422f9bdf76baecab1098514603287dc3 /apps/user_ldap/lib | |
parent | 3840466f9aadb0f925ecfd03fb716293bdb68c0e (diff) | |
download | nextcloud-server-990ac34aaa707652614820848e6b740763936831.tar.gz nextcloud-server-990ac34aaa707652614820848e6b740763936831.zip |
Use proper namespaces - fixes #25078 (#25079)
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/Proxy.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Proxy.php b/apps/user_ldap/lib/Proxy.php index 4f6a04daad2..2af55430b7b 100644 --- a/apps/user_ldap/lib/Proxy.php +++ b/apps/user_ldap/lib/Proxy.php @@ -30,6 +30,7 @@ namespace OCA\User_LDAP; use OCA\User_LDAP\Mapping\UserMapping; use OCA\User_LDAP\Mapping\GroupMapping; +use OCA\User_LDAP\User\Manager; abstract class Proxy { static private $accesses = array(); @@ -72,7 +73,7 @@ abstract class Proxy { $coreUserManager = \OC::$server->getUserManager(); } $userManager = - new user\Manager($ocConfig, $fs, $log, $avatarM, new \OCP\Image(), $db, $coreUserManager); + new Manager($ocConfig, $fs, $log, $avatarM, new \OCP\Image(), $db, $coreUserManager); $connector = new Connection($this->ldap, $configPrefix); $access = new Access($connector, $this->ldap, $userManager); $access->setUserMapper($userMap); |