summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-01-09 15:54:38 +0100
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-01-09 15:54:38 +0100
commitd814697fae2c9907f4aa9b59f7ee48c403e48ce4 (patch)
treed09d834f7318fe6f92fd479280b8a9e6445bae48 /apps
parent4436e76959fe8230d343aabfe2dbbc777d7f2bc5 (diff)
downloadnextcloud-server-d814697fae2c9907f4aa9b59f7ee48c403e48ce4.tar.gz
nextcloud-server-d814697fae2c9907f4aa9b59f7ee48c403e48ce4.zip
allow moving into dirs with + chars
Diffstat (limited to 'apps')
-rw-r--r--apps/files/ajax/move.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php
index ddcda553e3d..a6662c28b3c 100644
--- a/apps/files/ajax/move.php
+++ b/apps/files/ajax/move.php
@@ -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_Files::move($dir, $file, $target, $file)) {