function _fix_gpc_magic
Same name and namespace in other branches
- 6.x drupal-6.x/includes/common.inc \_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-7.x/
includes/ common.inc - Fixes double-escaping caused by "magic quotes" in some PHP installations.
Archivo
- drupal-7.x/
includes/ common.inc, line 1115 - Common functions that many Drupal modules will need to reference.
Código
function _fix_gpc_magic(&$item) {
if (is_array($item)) {
array_walk($item, '_fix_gpc_magic');
}
else {
$item = stripslashes($item);
}
}