diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-02-28 10:58:51 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-02-28 10:58:51 +0100 |
commit | 470a0ad61195abc92e0a223adaf471c378e368b6 (patch) | |
tree | 143ec64ac18ab5c573bf7bcceb3f5d87900a90e6 | |
parent | 4605c2cc2ddf88478df669e614858ccd27ddb574 (diff) | |
download | nextcloud-server-470a0ad61195abc92e0a223adaf471c378e368b6.tar.gz nextcloud-server-470a0ad61195abc92e0a223adaf471c378e368b6.zip |
remove remaining testing artefact
-rw-r--r-- | apps/user_ldap/user_proxy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/user_proxy.php b/apps/user_ldap/user_proxy.php index 2b1b86056ea..2cb3dfb2c60 100644 --- a/apps/user_ldap/user_proxy.php +++ b/apps/user_ldap/user_proxy.php @@ -79,7 +79,7 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface { $cacheKey = $this->getUserCacheKey($uid); $prefix = $this->getFromCache($cacheKey); //in case the uid has been found in the past, try this stored connection first - if(false && !is_null($prefix)) { + if(!is_null($prefix)) { if(isset($this->backends[$prefix])) { $instance = $this->backends[$prefix]; if(!method_exists($instance, $method) |