diff options
author | alecpl <alec@alec.pl> | 2011-09-15 08:42:31 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-09-15 08:42:31 +0000 |
commit | 140abb0ca07eff1e2e076916c67f28000fde72b1 (patch) | |
tree | e72640e67d41619ab2b936bfabb498193b854789 | |
parent | c3ba0e54afa9088783eaafa94b13ac1eae03916c (diff) |
- Require magic_quotes_runtime=Off because it modifies data streams (too much effort to handle this)
-rw-r--r-- | INSTALL | 1 | ||||
-rwxr-xr-x | program/include/iniset.php | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -29,6 +29,7 @@ REQUIREMENTS - zend.ze1_compatibility_mode disabled - suhosin.session.encrypt disabled - mbstring.func_overload disabled + - magic_quotes_runtime disabled * PHP compiled with OpenSSL to connect to IMAPS and to use the spell checker * A MySQL (4.0.8 or newer), PostgreSQL, MSSQL database engine or the SQLite extension for PHP diff --git a/program/include/iniset.php b/program/include/iniset.php index a7699e578..9c9e2ecd5 100755 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -28,6 +28,7 @@ $crit_opts = array( 'suhosin.session.encrypt' => 0, 'session.auto_start' => 0, 'file_uploads' => 1, + 'magic_quotes_runtime' => 0, ); foreach ($crit_opts as $optname => $optval) { if ($optval != ini_get($optname)) { |