function _fix_gpc_magic

Strips slashes from a string or array of strings.

Callback for array_walk() within fix_gpx_magic().

Parameters

$item: An individual string or array of strings from superglobals.

1 string reference to '_fix_gpc_magic'
fix_gpc_magic in drupal/includes/common.inc
Fixes double-escaping caused by "magic quotes" in some PHP installations.

File

drupal/includes/common.inc, line 1164
Common functions that many Drupal modules will need to reference.

Code

function _fix_gpc_magic(&$item) {
  if (is_array($item)) {
    array_walk($item, '_fix_gpc_magic');
  }
  else {
    $item = stripslashes($item);
  }
}