Guest User

Untitled

a guest
Jan 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. if (get_magic_quotes_gpc())
  2. {
  3. function AutoDeslash($val)
  4. {
  5. if (is_array($val))
  6. return array_map('AutoDeslash', $val);
  7. else if (is_string($val))
  8. return stripslashes($val);
  9. }
  10.  
  11. $_GET = array_map('AutoDeslash', $_GET);
  12. $_POST = array_map('AutoDeslash', $_POST);
  13. $_COOKIE = array_map('AutoDeslash', $_COOKIE);
  14. }
Add Comment
Please, Sign In to add comment