diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-09 22:44:11 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-14 08:36:26 +0100 |
commit | 2d6d0a4ad438590504c13f04a6b2916a59a99c30 (patch) | |
tree | 219557660d50e4742fef8bcfc829b495e7e2b9c0 /lib/user.php | |
parent | 26791238463fda41f8b5abdedb7164df63d1b766 (diff) | |
download | nextcloud-server-2d6d0a4ad438590504c13f04a6b2916a59a99c30.tar.gz nextcloud-server-2d6d0a4ad438590504c13f04a6b2916a59a99c30.zip |
Whitespace indent fixes
Diffstat (limited to 'lib/user.php')
-rw-r--r-- | lib/user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/user.php b/lib/user.php index 48f4e5c7006..6c74bb73c8c 100644 --- a/lib/user.php +++ b/lib/user.php @@ -542,8 +542,8 @@ class OC_User { public static function userExists($uid, $excludingBackend=null) { foreach(self::$_usedBackends as $backend) { if (!is_null($excludingBackend) && !strcmp(get_class($backend), $excludingBackend)) { - OC_Log::write('OC_User', $excludingBackend . 'excluded from user existance check.', OC_Log::DEBUG); - continue; + OC_Log::write('OC_User', $excludingBackend . 'excluded from user existance check.', OC_Log::DEBUG); + continue; } $result=$backend->userExists($uid); if($result===true) { |