_fix_gpc_magic

Versions
mediamosa-21
_fix_gpc_magic(&$item)

Code

includes/common.inc, line 994

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