summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorTom Needham <needham.thomas@gmail.com>2011-12-30 23:20:44 +0000
committerTom Needham <needham.thomas@gmail.com>2011-12-30 23:20:44 +0000
commit5a5b216ba0c2d58352364b9fc908f6547989ef72 (patch)
tree50c4d60a6407111a7306e43d8aa1b7f5aa54353f /files
parent5ebf8a87f2523b799a7cd3302410cbeef7cfb1db (diff)
downloadnextcloud-server-5a5b216ba0c2d58352364b9fc908f6547989ef72.tar.gz
nextcloud-server-5a5b216ba0c2d58352364b9fc908f6547989ef72.zip
Fixed error message
Diffstat (limited to 'files')
-rw-r--r--files/ajax/move.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ajax/move.php b/files/ajax/move.php
index 8a56a015486..c2490ecc6b3 100644
--- a/files/ajax/move.php
+++ b/files/ajax/move.php
@@ -14,7 +14,7 @@ $target = $_GET["target"];
if(OC_Files::move($dir,$file,$target,$file)){
OC_JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
}else{
- OC_JSON::error(array("data" => array( "message" => "Could move $file" )));
+ OC_JSON::error(array("data" => array( "message" => "Couldn't move $file" )));
}
?>