From d4c47c109bc99a5269a9d5e39ee80cfdbba279ab Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Tue, 17 Apr 2007 08:23:50 +0000 Subject: [PATCH] not yet implemented issue, reported on the forums --- include/compat.inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/compat.inc.php b/include/compat.inc.php index 7d38028..8e15694 100644 --- a/include/compat.inc.php +++ b/include/compat.inc.php @@ -115,9 +115,12 @@ if (extension_loaded('filter') && function_exists('input_name_to_filter') && inp foreach ($_COOKIE as $key => $value) { $_COOKIE[$key] = input_get(INPUT_COOKIE, $key, FILTER_UNSAFE_RAW); } + // NOT YET IMPLEMENTED IN PHP: + /* foreach ($_SESSION as $key => $value) { $_SESSION[$key] = input_get(INPUT_SESSION, $key, FILTER_UNSAFE_RAW); } + */ } if (extension_loaded('filter') && function_exists('filter_id') && function_exists('filter_input') && filter_id(ini_get('filter.default')) !== FILTER_UNSAFE_RAW) { -- 2.39.5