diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-02-19 11:49:41 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-02-19 11:49:41 +0100 |
commit | 815e964362192483989113af5c48d947084b5512 (patch) | |
tree | d2b63b4b2723f4ded09d8f462bb1a3d867e74e61 /apps/files_trashbin/ajax | |
parent | 51cef9d8f06586a4e7d4353cb5d7cc3fcddcf97a (diff) | |
download | nextcloud-server-815e964362192483989113af5c48d947084b5512.tar.gz nextcloud-server-815e964362192483989113af5c48d947084b5512.zip |
use instead of
Diffstat (limited to 'apps/files_trashbin/ajax')
-rw-r--r-- | apps/files_trashbin/ajax/undelete.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index 6320c1d0827..57f62816749 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -3,8 +3,8 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$files = $_REQUEST['files']; -$dirlisting = $_REQUEST['dirlisting']; +$files = $_POST['files']; +$dirlisting = $_POST['dirlisting']; $list = explode(';', $files); $error = array(); |