From 36f6744b23abb91712ea66621f9068358ac6b89b Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 30 May 2005 17:54:15 +0000 Subject: [PATCH] ISSO's input handler now merges $_COOKIE into the mix --- kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel.php b/kernel.php index 2e4b5f7..55c29b8 100644 --- a/kernel.php +++ b/kernel.php @@ -181,7 +181,7 @@ class Shared_Object_Framework $this->escapestrings = (bool)constant('ISSO_ESCAPE_STRINGS'); } - // start input sanitize using variable_order GP + // start input sanitize using variable_order GPC if (!$this->escapestrings) { $this->exec_sanitize_data(); @@ -517,7 +517,7 @@ class Shared_Object_Framework */ function exec_sanitize_data() { - $this->in = $this->_sanitize_input_recursive(array_merge($_GET, $_POST)); + $this->in = $this->_sanitize_input_recursive(array_merge($_GET, $_POST, $_COOKIE)); // we're now using magic quotes if ($this->escapestrings) { -- 2.43.5