From 0b6d022e6fa9dc08ddbc8ba420cdd58a690cf852 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Mon, 04 Jun 2012 10:05:57 -0400
Subject: [PATCH] Fix magic_quotes_sybase handling (#1488506) Improved handling of critical PHP settings - try to set them to required value before die()
---
installer/check.php | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/installer/check.php b/installer/check.php
index 0ce428a..e5f3026 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -40,6 +40,8 @@
'zend.ze1_compatibility_mode' => 0,
'mbstring.func_overload' => 0,
'suhosin.session.encrypt' => 0,
+ 'magic_quotes_runtime' => 0,
+ 'magic_quotes_sybase' => 0,
);
$optional_checks = array(
--
Gitblit v1.9.1