]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fixed error message
authorTom Needham <needham.thomas@gmail.com>
Fri, 30 Dec 2011 23:20:44 +0000 (23:20 +0000)
committerTom Needham <needham.thomas@gmail.com>
Fri, 30 Dec 2011 23:20:44 +0000 (23:20 +0000)
files/ajax/move.php

index 8a56a0154868c763334331a60429099c845f0a14..c2490ecc6b33affd5904d8cecf4fd05fea4bd53a 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" => "Couldn't move $file" )));
 }
 
 ?>