]> source.dussan.org Git - nextcloud-server.git/commitdiff
Last instances of lowercase user_ldap
authorJoas Schilling <nickvergessen@owncloud.com>
Fri, 13 May 2016 06:44:09 +0000 (08:44 +0200)
committerJoas Schilling <nickvergessen@owncloud.com>
Wed, 25 May 2016 14:06:09 +0000 (16:06 +0200)
apps/user_ldap/appinfo/info.xml
apps/user_ldap/lib/Jobs/CleanUp.php

index 23dbc5278e5446127ffa5efd1e04c143bbaffe6f..144479e132e52b3537b28e7aebea1121d57d88f1 100644 (file)
@@ -24,7 +24,7 @@ A user logs into ownCloud with their LDAP or AD credentials, and is granted acce
        <namespace>User_LDAP</namespace>
 
        <background-jobs>
-               <job>OCA\user_ldap\Jobs\UpdateGroups</job>
+               <job>OCA\User_LDAP\Jobs\UpdateGroups</job>
                <job>OCA\User_LDAP\Jobs\CleanUp</job>
        </background-jobs>
 </info>
index 45669a278ba18309225d0ca89893a1df0e2c361f..48f80ed9fa0b85f85dd7bffca5cf268eaaa050d0 100644 (file)
@@ -23,7 +23,7 @@
 namespace OCA\User_LDAP\Jobs;
 
 use \OC\BackgroundJob\TimedJob;
-use \OCA\user_ldap\User_LDAP;
+use \OCA\User_LDAP\User_LDAP;
 use \OCA\User_LDAP\User_Proxy;
 use \OCA\User_LDAP\Helper;
 use \OCA\User_LDAP\LDAP;
@@ -35,7 +35,7 @@ use \OCA\User_LDAP\Mapping\UserMapping;
  *
  * a Background job to clean up deleted users
  *
- * @package OCA\user_ldap\lib;
+ * @package OCA\User_LDAP\Jobs;
  */
 class CleanUp extends TimedJob {
        /** @var int $limit amount of users that should be checked per run */