summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-02-27 16:20:53 +0100
committerArthur Schiwon <blizzz@owncloud.com>2014-03-03 10:20:31 +0100
commitc7751c0795c74759a74a73ba9290c17f6db3870b (patch)
treecfbdc5bceb114535227c26782d278a1f321af395
parenta8883f4ed22f32ef8eccca5dc0433d7219b9ab57 (diff)
downloadnextcloud-server-c7751c0795c74759a74a73ba9290c17f6db3870b.tar.gz
nextcloud-server-c7751c0795c74759a74a73ba9290c17f6db3870b.zip
intendetion. where did the whitespaces come from?
-rw-r--r--apps/user_ldap/user_proxy.php4
1 files 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;
}