summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuan Pablo Villafáñez <jvillafanez@solidgear.es>2016-06-10 10:07:02 +0200
committerVincent Petry <pvince81@owncloud.com>2016-06-10 14:42:59 +0200
commit8e640faf3a28f1d03e332bbdeac875c281b7300d (patch)
tree4c262707b6ba0f6b8d206d524b6e4c9ae76a5c11
parent5a8278d9e6c8007bb0d2004ac1a72153d6a5edf7 (diff)
downloadnextcloud-server-8e640faf3a28f1d03e332bbdeac875c281b7300d.tar.gz
nextcloud-server-8e640faf3a28f1d03e332bbdeac875c281b7300d.zip
Fix typo
-rw-r--r--apps/files/ajax/delete.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php
index dbaaddd1070..07bd01cd250 100644
--- a/apps/files/ajax/delete.php
+++ b/apps/files/ajax/delete.php
@@ -72,7 +72,7 @@ try {
} catch(\OCP\Files\NotFoundException $e) {
OCP\JSON::error(['data' => ['message' => 'File not found']]);
return;
-} catch(\OCP\Files\StorageNotAvailableException $e) {$
+} catch(\OCP\Files\StorageNotAvailableException $e) {
OCP\JSON::error(['data' => ['message' => 'Storage not available']]);
return;
}