Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Magic Quotes Fix
- */
- if(get_magic_quotes_gpc()) {
- $gpc = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
- array_walk_recursive($gpc, function(&$value) {
- $value = stripslashes($value);
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement