X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fenv.php;h=aed838be351ce3302985a72f062020d85e1cf709;hb=36f58fcfd9fa0f3660a727effcdc47a6ff4eebf6;hp=22a5b7d1fdc96dbab008436f0c29ff0b49111b87;hpb=fd8d40e7411aaad6191d3cc2caae8a1c9bc87585;p=platal.git diff --git a/classes/env.php b/classes/env.php index 22a5b7d..aed838b 100644 --- a/classes/env.php +++ b/classes/env.php @@ -162,13 +162,6 @@ function fix_gpc_magic(&$item, $key) { $item = stripslashes($item); } } -function fix_encoding(&$item, $key = null) { - if (is_array($item)) { - array_walk($item, 'fix_encoding'); - } elseif (preg_match('/[\x80-\x9f]/', $item)) { - $item = iconv('CP1252', 'ISO-8859-15//TRANSLIT', $item); - } -} if (ini_get('magic_quotes_gpc') && empty($DONT_FIX_GPC)) { array_walk($_GET, 'fix_gpc_magic'); @@ -176,12 +169,6 @@ if (ini_get('magic_quotes_gpc') && empty($DONT_FIX_GPC)) { array_walk($_COOKIE, 'fix_gpc_magic'); array_walk($_REQUEST, 'fix_gpc_magic'); } -if (empty($DONT_FIX_ENCODING)) { - array_walk($_GET, 'fix_encoding'); - array_walk($_POST, 'fix_encoding'); - array_walk($_COOKIE, 'fix_encoding'); - array_walk($_REQUEST, 'fix_encoding'); -} -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>