diff options
author | Tom Needham <tom@owncloud.com> | 2013-02-10 12:35:39 +0100 |
---|---|---|
committer | Tom Needham <tom@owncloud.com> | 2013-02-10 12:35:39 +0100 |
commit | 266ba2806d9b72ec675b71fb939483b40f77cf00 (patch) | |
tree | 350bfc1d886ef8b814d672c9d2b7243caebd9256 /lib/api.php | |
parent | 5ad1b63f762ab52f8bf550787588dd1ca728145d (diff) | |
download | nextcloud-server-266ba2806d9b72ec675b71fb939483b40f77cf00.tar.gz nextcloud-server-266ba2806d9b72ec675b71fb939483b40f77cf00.zip |
Remove debug call, correct app identifier
Diffstat (limited to 'lib/api.php')
-rw-r--r-- | lib/api.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/api.php b/lib/api.php index d50882b1190..8fa4d764abf 100644 --- a/lib/api.php +++ b/lib/api.php @@ -117,7 +117,6 @@ class OC_API { 'response' => call_user_func($action['action'], $parameters), ); } - $response = self::mergeResponses($responses); $formats = array('json', 'xml'); $format = !empty($_GET['format']) && in_array($_GET['format'], $formats) ? $_GET['format'] : 'xml'; @@ -249,7 +248,6 @@ class OC_API { */ private static function respond($result, $format='xml') { // Send 401 headers if unauthorised - die(var_dump($result)); if($result->getStatusCode() === self::RESPOND_UNAUTHORISED) { header('WWW-Authenticate: Basic realm="Authorisation Required"'); header('HTTP/1.0 401 Unauthorized'); |