From c7751c0795c74759a74a73ba9290c17f6db3870b Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 27 Feb 2014 16:20:53 +0100 Subject: [PATCH] intendetion. where did the whitespaces come from? --- apps/user_ldap/user_proxy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/user_proxy.php b/apps/user_ldap/user_proxy.php index 67f8639b181..2b1b86056ea 100644 --- a/apps/user_ldap/user_proxy.php +++ b/apps/user_ldap/user_proxy.php @@ -59,10 +59,10 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface { && method_exists($this->getAccess($configPrefix), $method)) { $instance = $this->getAccess($configPrefix); } - if($result = call_user_func_array(array($instance, $method), $parameters)) { + if($result = call_user_func_array(array($instance, $method), $parameters)) { $this->writeToCache($cacheKey, $configPrefix); return $result; - } + } } return false; }