summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2007-04-07 11:05:06 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2007-04-07 11:05:06 +0000
commit6f94dc3c2f57c9c724ce49a5a3a8e21a72ef3377 (patch)
tree7f4762085cb85f435a3c1afe7c82a626037812cb /.htaccess
parentef925b1009d07c2aeff6a744613b1986a182d652 (diff)
downloadbrdo-6f94dc3c2f57c9c724ce49a5a3a8e21a72ef3377.tar.gz
brdo-6f94dc3c2f57c9c724ce49a5a3a8e21a72ef3377.tar.bz2
#87138: Disable mbstring encoding conversion in htaccess
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess9
1 files changed, 9 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
index 9caf2514d..000a43614 100644
--- a/.htaccess
+++ b/.htaccess
@@ -27,6 +27,9 @@ DirectoryIndex index.php
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
+ php_value mbstring.http_input pass
+ php_value mbstring.http_output pass
+ php_value mbstring.encoding_translation 0
</IfModule>
# PHP 4, Apache 2.
@@ -34,6 +37,9 @@ DirectoryIndex index.php
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
+ php_value mbstring.http_input pass
+ php_value mbstring.http_output pass
+ php_value mbstring.encoding_translation 0
</IfModule>
# PHP 5, Apache 1 and 2.
@@ -41,6 +47,9 @@ DirectoryIndex index.php
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
+ php_value mbstring.http_input pass
+ php_value mbstring.http_output pass
+ php_value mbstring.encoding_translation 0
</IfModule>
# Requires mod_expires to be enabled.