]> source.dussan.org Git - nextcloud-server.git/commitdiff
Whitespaces
authorArthur Schiwon <blizzz@owncloud.com>
Mon, 9 Sep 2013 21:19:05 +0000 (23:19 +0200)
committerArthur Schiwon <blizzz@owncloud.com>
Fri, 27 Sep 2013 11:34:15 +0000 (13:34 +0200)
apps/user_ldap/user_ldap.php

index 850ca0df99546d339203931242aefe0df324337a..ab3b57001b6bf3f364e72f922e5b9bd1a02f711e 100644 (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);