From c8492793bcc81d7cba4e3c64e381701943b6cd20 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 13 Mar 2014 20:57:13 -0400 Subject: Make sure that magic quotes are disabled for PHP < 5.4 --- check_setup.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/check_setup.php b/check_setup.php index a2ad30db..3751e59d 100644 --- a/check_setup.php +++ b/check_setup.php @@ -1,15 +1,21 @@ "short_open_tag = On"'); + die('This software require to have short tags enabled if you have PHP < 5.4 ("short_open_tag = On")'); + } + + // Magic quotes are deprecated since PHP 5.4 + if (get_magic_quotes_gpc()) { + die('This software require to have "Magic quotes" disabled, it\'s deprecated since PHP 5.4 ("magic_quotes_gpc = Off")'); } } -- cgit v1.2.3