aboutsummaryrefslogtreecommitdiffstats
path: root/lib/api.php
diff options
context:
space:
mode:
authorTom Needham <needham.thomas@gmail.com>2013-01-23 23:39:29 +0000
committerTom Needham <needham.thomas@gmail.com>2013-01-23 23:39:29 +0000
commit8f9d3cd01d9cf253b88ac360c291bf361514742a (patch)
tree7b6847eb8dd7f77d170ea400816dd8be36f44e29 /lib/api.php
parent9dc668740a20e2e5ab698b00c4286d8f6719db6e (diff)
downloadnextcloud-server-8f9d3cd01d9cf253b88ac360c291bf361514742a.tar.gz
nextcloud-server-8f9d3cd01d9cf253b88ac360c291bf361514742a.zip
Code style update
Diffstat (limited to 'lib/api.php')
-rw-r--r--lib/api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api.php b/lib/api.php
index 7722c744483..64b2f0fe9c1 100644
--- a/lib/api.php
+++ b/lib/api.php
@@ -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 {