_fix_gpc_magic

Definition

_fix_gpc_magic(&$item)
drupal/includes/common.inc, line 568

Code

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