summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-09-15 15:21:44 +0000
committerDries Buytaert <dries@buytaert.net>2008-09-15 15:21:44 +0000
commit4ebaf8b65992a7bb78b97e3639ab83d4be3dc7ea (patch)
treee894f32f32db49174f156bd5d3238563e7125b63 /.htaccess
parent312b97e9e9f747cb48e582a595aac78f287cbc28 (diff)
downloadbrdo-4ebaf8b65992a7bb78b97e3639ab83d4be3dc7ea.tar.gz
brdo-4ebaf8b65992a7bb78b97e3639ab83d4be3dc7ea.tar.bz2
- Patch #217170 by maartenvg, rbiffl: boolean PHP settings are best set with php_flag instead of php_value.
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess8
1 files changed, 4 insertions, 4 deletions
diff --git a/.htaccess b/.htaccess
index bab63437b..8a4d660f2 100644
--- a/.htaccess
+++ b/.htaccess
@@ -29,12 +29,12 @@ DirectoryIndex index.php
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
- php_value magic_quotes_gpc 0
- php_value register_globals 0
- php_value session.auto_start 0
+ php_flag magic_quotes_gpc off
+ php_flag register_globals off
+ php_flag session.auto_start off
php_value mbstring.http_input pass
php_value mbstring.http_output pass
- php_value mbstring.encoding_translation 0
+ php_flag mbstring.encoding_translation off
</IfModule>
# Requires mod_expires to be enabled.