function fix_gpc_magic

7.x common.inc fix_gpc_magic()
6.x common.inc fix_gpc_magic()

Fix double-escaping problems caused by "magic quotes" in some PHP installations.

1 call to fix_gpc_magic()
_drupal_bootstrap_full in drupal-6.x/includes/common.inc

File

drupal-6.x/includes/common.inc, line 733
Common functions that many Drupal modules will need to reference.

Code

function fix_gpc_magic() {
  static $fixed = FALSE;
  if (!$fixed && ini_get('magic_quotes_gpc')) {
    array_walk($_GET, '_fix_gpc_magic');
    array_walk($_POST, '_fix_gpc_magic');
    array_walk($_COOKIE, '_fix_gpc_magic');
    array_walk($_REQUEST, '_fix_gpc_magic');
    array_walk($_FILES, '_fix_gpc_magic_files');
    $fixed = TRUE;
  }
}