Whitespaces

This commit is contained in:
Arthur Schiwon 2013-09-09 23:19:05 +02:00
parent f04aa1af5d
commit b9cc2ad660
1 changed files with 0 additions and 2 deletions

View File

@ -144,14 +144,12 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface {
if($this->connection->isCached('userExists'.$uid)) {
return $this->connection->getFromCache('userExists'.$uid);
}
//getting dn, if false the user does not exist. If dn, he may be mapped only, requires more checking.
$dn = $this->username2dn($uid);
if(!$dn) {
$this->connection->writeToCache('userExists'.$uid, false);
return false;
}
//check if user really still exists by reading its entry
if(!is_array($this->readAttribute($dn, ''))) {
$this->connection->writeToCache('userExists'.$uid, false);