diff options
author | Tom Needham <needham.thomas@gmail.com> | 2013-01-23 23:39:29 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2013-01-23 23:39:29 +0000 |
commit | 8f9d3cd01d9cf253b88ac360c291bf361514742a (patch) | |
tree | 7b6847eb8dd7f77d170ea400816dd8be36f44e29 /lib/api.php | |
parent | 9dc668740a20e2e5ab698b00c4286d8f6719db6e (diff) | |
download | nextcloud-server-8f9d3cd01d9cf253b88ac360c291bf361514742a.tar.gz nextcloud-server-8f9d3cd01d9cf253b88ac360c291bf361514742a.zip |
Code style update
Diffstat (limited to 'lib/api.php')
-rw-r--r-- | lib/api.php | 2 |
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 { |