From 7ac22e92279fc77db316623c76cfcf6cbb22e070 Mon Sep 17 00:00:00 2001 From: marc tobias Date: Mon, 14 Sep 2020 00:45:22 +0200 Subject: [PATCH] starting PHP 5.4 get_magic_quotes_gpc() returns false, no need to check --- lib/init.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/init.php b/lib/init.php index 0bd23e31..082d1bf5 100644 --- a/lib/init.php +++ b/lib/init.php @@ -2,8 +2,3 @@ require_once(CONST_BasePath.'/lib/lib.php'); require_once(CONST_BasePath.'/lib/DB.php'); - -if (get_magic_quotes_gpc()) { - echo "Please disable magic quotes in your php.ini configuration\n"; - exit; -} -- 2.39.5