diff options
author | RealRancor <Fisch.666@gmx.de> | 2015-08-20 11:24:28 +0200 |
---|---|---|
committer | RealRancor <Fisch.666@gmx.de> | 2015-09-29 17:08:20 +0200 |
commit | c3dfa3ccada2d9f0b5c7d6e1cc855bec784e541b (patch) | |
tree | dddc706584e186ec8cebde7e18dfc10257b015ae /.htaccess | |
parent | 90810cc6052b38ac03dd8f08a200c5928a355d20 (diff) | |
download | nextcloud-server-c3dfa3ccada2d9f0b5c7d6e1cc855bec784e541b.tar.gz nextcloud-server-c3dfa3ccada2d9f0b5c7d6e1cc855bec784e541b.zip |
Fix .htaccess: php_value should be integer
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess index 35c478860d5..392b9b41559 100644 --- a/.htaccess +++ b/.htaccess @@ -28,7 +28,7 @@ php_value mbstring.func_overload 0 php_value always_populate_raw_post_data -1 php_value default_charset 'UTF-8' - php_value output_buffering off + php_value output_buffering 0 <IfModule mod_env.c> SetEnv htaccessWorking true </IfModule> |