diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-01-22 13:46:40 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-01-22 13:50:38 +0100 |
commit | bb80cf4ecab3a92541bf9c2fccaa204b6ea914f9 (patch) | |
tree | fb94e03746713a0b98eb1711435e0edad3c88c20 /.htaccess | |
parent | b5b491d1bb12a869ddae7878e8aa441109419a00 (diff) | |
download | nextcloud-server-bb80cf4ecab3a92541bf9c2fccaa204b6ea914f9.tar.gz nextcloud-server-bb80cf4ecab3a92541bf9c2fccaa204b6ea914f9.zip |
Add check for `HTTP_RAW_POST_DATA` setting for >= 5.6
PHP 5.6 otherwise throws notices for perfectly valid code which results in broken endpoints.
Fixes https://github.com/owncloud/core/issues/13592
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess index af7e961379c..962e969d59c 100644 --- a/.htaccess +++ b/.htaccess @@ -12,6 +12,7 @@ php_value upload_max_filesize 513M php_value post_max_size 513M php_value memory_limit 512M php_value mbstring.func_overload 0 +php_value always_populate_raw_post_data -1 <IfModule env_module> SetEnv htaccessWorking true </IfModule> |