From d88a9c339b0f2ebdbdb55404420ced007b5aca04 Mon Sep 17 00:00:00 2001 From: Xkeeper Date: Tue, 17 Sep 2024 02:30:07 -0700 Subject: [PATCH] 7.4 still has this function i guess --- lib/function.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/function.php b/lib/function.php index 2cb73dd..3245682 100644 --- a/lib/function.php +++ b/lib/function.php @@ -52,7 +52,7 @@ // Bad Design Decisions 2001. // :( - if (!function_exists("get_magic_quotes_gpc")) { + if (true) { // simulateds magic quotes gpc. if you don't know what that is: congrats! $_GET = addslashes_array($_GET); $_POST = addslashes_array($_POST); $_COOKIE = addslashes_array($_COOKIE);