summaryrefslogtreecommitdiffstats
path: root/lib/api.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-02-14 12:54:36 -0800
committerBart Visscher <bartv@thisnet.nl>2013-02-14 12:54:36 -0800
commit9058d398a7b9aac58ab4aa7379e13ca83c72281d (patch)
tree7aaa55510ab15435efc2f36cf5628f5763f3ce02 /lib/api.php
parent4320f23c87ab6b43a31b8dcb0c6e44127438f123 (diff)
parentffae6f4b847e96d691053300c355ab81edc6c1c8 (diff)
downloadnextcloud-server-9058d398a7b9aac58ab4aa7379e13ca83c72281d.tar.gz
nextcloud-server-9058d398a7b9aac58ab4aa7379e13ca83c72281d.zip
Merge pull request #1662 from owncloud/style-cleanup
Style cleanup
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 abf1c3b0036..70e3028b68a 100644
--- a/lib/api.php
+++ b/lib/api.php
@@ -82,7 +82,7 @@ class OC_API {
// Prepare the request variables
if($_SERVER['REQUEST_METHOD'] == 'PUT') {
parse_str(file_get_contents("php://input"), $parameters['_put']);
- } else if($_SERVER['REQUEST_METHOD'] == 'DELETE'){
+ } else if($_SERVER['REQUEST_METHOD'] == 'DELETE') {
parse_str(file_get_contents("php://input"), $parameters['_delete']);
}
$name = $parameters['_route'];