diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-18 20:09:03 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-18 20:09:03 +0100 |
commit | 5ff29b4348a1dcb9ed32273133b1c787aaf5c72c (patch) | |
tree | 8d92b51087544ab02a459fc32d01b110cce48f28 /apps/files/ajax/delete.php | |
parent | e560cba76beb918a2c127b931b6d409abd9f03ab (diff) | |
download | nextcloud-server-5ff29b4348a1dcb9ed32273133b1c787aaf5c72c.tar.gz nextcloud-server-5ff29b4348a1dcb9ed32273133b1c787aaf5c72c.zip |
fixing indent
Diffstat (limited to 'apps/files/ajax/delete.php')
-rw-r--r-- | apps/files/ajax/delete.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index bb1f3fff87b..293543c547f 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -29,12 +29,12 @@ $maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize; if($success) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $files, - 'uploadMaxFilesize'=>$maxUploadFilesize, - 'maxHumanFilesize'=>$maxHumanFilesize - ))); + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); } else { OCP\JSON::error(array("data" => array( "message" => "Could not delete:\n" . $filesWithError, - 'uploadMaxFilesize'=>$maxUploadFilesize, - 'maxHumanFilesize'=>$maxHumanFilesize - ))); + 'uploadMaxFilesize'=>$maxUploadFilesize, + 'maxHumanFilesize'=>$maxHumanFilesize + ))); } |