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:
authorshkdee <louis.traynard@m4x.org>2013-06-18 22:47:47 +0400
committerArthur Schiwon <blizzz@owncloud.com>2013-07-19 20:09:36 +0400
commitc2f3bcbaf0950ccb4f6a62026e27259cfe03c453 (patch)
tree962e4f6042b953eddee80c51115fdd76703f343a /lib/user.php
parent6e4bb45809a419402a88da1bb6fbe1a77e567d1c (diff)
Backport #3779, makes setuped backends are REALLY remembered and not instanciated many times
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 b405c36ab4d..7d74cd75ed4 100644
--- a/lib/user.php
+++ b/lib/user.php
@@ -135,7 +135,7 @@ class OC_User {
// use Reflection to create a new instance, using the $args
$backend = $reflectionObj->newInstanceArgs($arguments);
self::useBackend($backend);
- $_setupedBackends[]=$i;
+ self::$_setupedBackends[] = $i;
} else {
OC_Log::write('core', 'User backend '.$class.' already initialized.', OC_Log::DEBUG);
}