Code style update

This commit is contained in:
Tom Needham 2013-01-23 23:39:29 +00:00
parent 9dc668740a
commit 8f9d3cd01d
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class OC_API {
if(self::isAuthorised(self::$actions[$name])) {
if(is_callable(self::$actions[$name]['action'])) {
$response = call_user_func(self::$actions[$name]['action'], $parameters);
if(!($response instanceof OC_OCS_Result)){
if(!($response instanceof OC_OCS_Result)) {
$response = new OC_OCS_Result(null, 996, 'Internal Server Error');
}
} else {