7.4 still has this function i guess

This commit is contained in:
Xkeeper 2024-09-17 02:30:07 -07:00
parent 1f8249f9ba
commit d88a9c339b
No known key found for this signature in database
GPG Key ID: 397C04773ABE4045

View File

@ -52,7 +52,7 @@
// Bad Design Decisions 2001. // 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); $_GET = addslashes_array($_GET);
$_POST = addslashes_array($_POST); $_POST = addslashes_array($_POST);
$_COOKIE = addslashes_array($_COOKIE); $_COOKIE = addslashes_array($_COOKIE);