diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:37:49 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:59 +0200 |
commit | aa7b6003834ec26f777443c9b28d808f098c2e29 (patch) | |
tree | 16c32dfa56dd03e2bfb9ca092ef675d13466e29e /apps/user_ldap/ajax/wizard.php | |
parent | af0a6961b1ae867e354ecf71d61708af9618c44f (diff) | |
download | nextcloud-server-aa7b6003834ec26f777443c9b28d808f098c2e29.tar.gz nextcloud-server-aa7b6003834ec26f777443c9b28d808f098c2e29.zip |
Move Configuration to PSR-4
Diffstat (limited to 'apps/user_ldap/ajax/wizard.php')
-rw-r--r-- | apps/user_ldap/ajax/wizard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/ajax/wizard.php b/apps/user_ldap/ajax/wizard.php index 1d0f6000666..6a67e2a1fd0 100644 --- a/apps/user_ldap/ajax/wizard.php +++ b/apps/user_ldap/ajax/wizard.php @@ -42,7 +42,7 @@ if(!isset($_POST['ldap_serverconfig_chooser'])) { $prefix = (string)$_POST['ldap_serverconfig_chooser']; $ldapWrapper = new \OCA\User_LDAP\LDAP(); -$configuration = new \OCA\user_ldap\lib\Configuration($prefix); +$configuration = new \OCA\User_LDAP\Configuration($prefix); $con = new \OCA\User_LDAP\Connection($ldapWrapper, '', null); $con->setConfiguration($configuration->getConfiguration()); |