summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-07-25 09:24:32 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-07-25 09:24:32 +0200
commit59b87fade55b49289287d1489950708187e438fd (patch)
tree2264a05d230951d39ef165002d508d8b4c01a78a /apps/files_trashbin
parentde4236bc4ae1a02141e1bf6d9ab60a9836cd965a (diff)
downloadnextcloud-server-59b87fade55b49289287d1489950708187e438fd.tar.gz
nextcloud-server-59b87fade55b49289287d1489950708187e438fd.zip
Fix error message while restoring all files
* use $_POST['files'] only of ssinlge files are restored * fixes #528
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/ajax/undelete.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php
index 9095c551b4f..ba671325372 100644
--- a/apps/files_trashbin/ajax/undelete.php
+++ b/apps/files_trashbin/ajax/undelete.php
@@ -29,7 +29,6 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
\OC::$server->getSession()->close();
-$files = $_POST['files'];
$dir = '/';
if (isset($_POST['dir'])) {
$dir = rtrim((string)$_POST['dir'], '/'). '/';
@@ -50,7 +49,7 @@ if (isset($_POST['allfiles']) && (string)$_POST['allfiles'] === 'true') {
$list[] = $fileName;
}
} else {
- $list = json_decode($files);
+ $list = json_decode($_POST['files']);
}
$error = array();