From 887838da08c56265145400a4513a51c7cc79ec5b Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Mon, 06 Aug 2012 13:57:14 -0400 Subject: [PATCH] Fix double HTML entities escaping in forward message header --- installer/check.php | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/installer/check.php b/installer/check.php index 0ce428a..4428bb8 100644 --- a/installer/check.php +++ b/installer/check.php @@ -40,10 +40,14 @@ 'zend.ze1_compatibility_mode' => 0, 'mbstring.func_overload' => 0, 'suhosin.session.encrypt' => 0, + 'magic_quotes_runtime' => 0, + 'magic_quotes_sybase' => 0, ); $optional_checks = array( - 'date.timezone' => '-NOTEMPTY-', + // required for utils/modcss.inc, should we require this? + 'allow_url_fopen' => 1, + 'date.timezone' => '-NOTEMPTY-', ); $source_urls = array( -- Gitblit v1.9.1