diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-06-04 16:05:57 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-06-04 16:08:37 +0200 |
commit | 7a259c601b4c9c69615411b6da91ff25b79079e0 (patch) | |
tree | d9feab8caa20f703edb5c4114ff109a8824eac36 /installer | |
parent | 9c8ff86ab00757e0c53a1a43858161330724553d (diff) |
Fix magic_quotes_sybase handling (#1488506)
Improved handling of critical PHP settings - try to set them to required value before die()
Diffstat (limited to 'installer')
-rw-r--r-- | installer/check.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/installer/check.php b/installer/check.php index 0ce428a7a..e5f30261c 100644 --- a/installer/check.php +++ b/installer/check.php @@ -40,6 +40,8 @@ $ini_checks = array( 'zend.ze1_compatibility_mode' => 0, 'mbstring.func_overload' => 0, 'suhosin.session.encrypt' => 0, + 'magic_quotes_runtime' => 0, + 'magic_quotes_sybase' => 0, ); $optional_checks = array( |