aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-04-07 23:02:49 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-04-07 23:02:49 +0200
commit6d373e97c32ec51bd649eeafdfcc3596067776f8 (patch)
treeb219dd79757c6a352c185fc3d59ca94b583939de
parent3587c88fe946196af009d02db7c7d5e2c8934fe9 (diff)
downloadnextcloud-server-6d373e97c32ec51bd649eeafdfcc3596067776f8.tar.gz
nextcloud-server-6d373e97c32ec51bd649eeafdfcc3596067776f8.zip
remove unused exit()
-rw-r--r--apps/files/ajax/upload.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php
index 38175fa5001..a5ce7b257da 100644
--- a/apps/files/ajax/upload.php
+++ b/apps/files/ajax/upload.php
@@ -196,7 +196,6 @@ if (strpos($dir, '..') === false) {
if ($error === false) {
OCP\JSON::encodedPrint($result);
- exit();
} else {
OCP\JSON::error(array(array('data' => array_merge(array('message' => $error, 'code' => $errorCode), $storageStats))));
}