diff options
Diffstat (limited to 'files')
-rw-r--r-- | files/ajax/move.php | 2 |
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" ))); } ?> |