summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2012-01-01 18:45:26 -0500
committerMichael Gapczynski <GapczynskiM@gmail.com>2012-01-01 18:45:26 -0500
commit470bab9c682fdbe4dcb331f2f6a00b3a9aefc929 (patch)
treeb167a5cefbb2ead2fc5b74e7813d2c73761aed97 /files
parenta9bab168f5e43bfa5fe1523aab80faf1bc02cd58 (diff)
downloadnextcloud-server-470bab9c682fdbe4dcb331f2f6a00b3a9aefc929.tar.gz
nextcloud-server-470bab9c682fdbe4dcb331f2f6a00b3a9aefc929.zip
Fix typo in move 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..3517901c6cf 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" => "Could not move $file" )));
}
?>