function _fix_gpc_magic in Drupal 7
Same name and namespace in other branches
- 4 includes/common.inc \_fix_gpc_magic()
- 5 includes/common.inc \_fix_gpc_magic()
- 6 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 includes/
common.inc - Fixes double-escaping caused by "magic quotes" in some PHP installations.
File
- includes/
common.inc, line 1179 - 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);
}
}