]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix typo in move error message
authorMichael Gapczynski <GapczynskiM@gmail.com>
Sun, 1 Jan 2012 23:45:26 +0000 (18:45 -0500)
committerMichael Gapczynski <GapczynskiM@gmail.com>
Sun, 1 Jan 2012 23:45:26 +0000 (18:45 -0500)
files/ajax/move.php

index 8a56a0154868c763334331a60429099c845f0a14..3517901c6cfe2e93234a7b25544793d71e7423c5 100644 (file)
@@ -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" )));
 }
 
 ?>