fix_gpc_magic
Definition
fix_gpc_magic()
includes/common.inc, line 403
Description
Correct double-escaping problems caused by "magic quotes" in some PHP installations.
Code
<?php
function fix_gpc_magic() {
static $fixed = false;
if (!$fixed && ini_get('magic_quotes_gpc')) {
array_walk($_GET, '_fix_gpc_magic');
array_walk($_POST, '_fix_gpc_magic');
array_walk($_COOKIE, '_fix_gpc_magic');
array_walk($_REQUEST, '_fix_gpc_magic');
$fixed = true;
}
}
?> 