diff options
Diffstat (limited to 'files/ajax/move.php')
-rw-r--r-- | files/ajax/move.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/files/ajax/move.php b/files/ajax/move.php deleted file mode 100644 index 0ad314f873c..00000000000 --- a/files/ajax/move.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php - -// Init owncloud - - -OC_JSON::checkLoggedIn(); - -// Get data -$dir = stripslashes($_GET["dir"]); -$file = stripslashes($_GET["file"]); -$target = stripslashes($_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 not move $file" ))); -} - -?> |