Update apps/files/ajax/move.php

fix moving dirs containing "+"
This commit is contained in:
denis-b 2012-10-29 16:46:22 +01:00
parent ac784baef6
commit 2aa5a185d4
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ OCP\JSON::callCheck();
// Get data
$dir = stripslashes($_GET["dir"]);
$file = stripslashes($_GET["file"]);
$target = stripslashes(urldecode($_GET["target"]));
$target = stripslashes(rawurldecode($_GET["target"]));
if(OC_Filesystem::file_exists($target . '/' . $file)){