Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-02-09 20:35:47 +0400
committerBart Visscher <bartv@thisnet.nl>2013-02-14 11:36:26 +0400
commitcd35d257bb3bef2e02ccf0cd99e59a74f1a753b9 (patch)
tree65d75158609697518a2023932b75c60c1a99ea42 /lib/user.php
parentd3ef967993d1e685e3311b073a8312c9dafdf214 (diff)
Fix NoSpaceAfterComma and SpaceBeforeComma
Diffstat (limited to 'lib/user.php')
-rw-r--r--lib/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/user.php b/lib/user.php
index 16680be4aa0..48f4e5c7006 100644
--- a/lib/user.php
+++ b/lib/user.php
@@ -541,7 +541,7 @@ class OC_User {
*/
public static function userExists($uid, $excludingBackend=null) {
foreach(self::$_usedBackends as $backend) {
- if (!is_null($excludingBackend) && !strcmp(get_class($backend),$excludingBackend)) {
+ if (!is_null($excludingBackend) && !strcmp(get_class($backend), $excludingBackend)) {
OC_Log::write('OC_User', $excludingBackend . 'excluded from user existance check.', OC_Log::DEBUG);
continue;
}