intendetion. where did the whitespaces come from?

This commit is contained in:
Arthur Schiwon 2014-02-27 16:20:53 +01:00
parent a8883f4ed2
commit c7751c0795
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}