diff options
author | Robin Appelman <icewind1991@gmail> | 2010-05-01 23:09:36 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail> | 2010-05-01 23:09:36 +0200 |
commit | c52e7d360fb9a0e57fe895724f4d082f9338a716 (patch) | |
tree | fcf855230891010711c4d1cbae4cb75ca6aa119a /files | |
parent | 567c17fde595ae47c6e281bcdad56d3723c642e6 (diff) | |
download | nextcloud-server-c52e7d360fb9a0e57fe895724f4d082f9338a716.tar.gz nextcloud-server-c52e7d360fb9a0e57fe895724f4d082f9338a716.zip |
More bug fixes, mostly IE related
Diffstat (limited to 'files')
-rwxr-xr-x | files/api.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/files/api.php b/files/api.php index 5a4c8801d4e..b27228d9676 100755 --- a/files/api.php +++ b/files/api.php @@ -23,6 +23,9 @@ require_once('../inc/lib_base.php'); $arguments=$_POST; +if(!isset($_POST['action']) and isset($_GET['action'])){ + $arguments=$_GET; +} foreach($arguments as &$argument){ $argument=stripslashes($argument); |