diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-07 23:02:49 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-07 23:02:49 +0200 |
commit | 6d373e97c32ec51bd649eeafdfcc3596067776f8 (patch) | |
tree | b219dd79757c6a352c185fc3d59ca94b583939de | |
parent | 3587c88fe946196af009d02db7c7d5e2c8934fe9 (diff) | |
download | nextcloud-server-6d373e97c32ec51bd649eeafdfcc3596067776f8.tar.gz nextcloud-server-6d373e97c32ec51bd649eeafdfcc3596067776f8.zip |
remove unused exit()
-rw-r--r-- | apps/files/ajax/upload.php | 1 |
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)))); } |