Last instances of lowercase user_ldap

This commit is contained in:
Joas Schilling 2016-05-13 08:44:09 +02:00
parent 3ef8c95b37
commit a4980a3de4
No known key found for this signature in database
GPG Key ID: 70A0B324C41C0946
2 changed files with 3 additions and 3 deletions

View 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>

View 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 */