From d9f8afe25bddec822f592263830bd55874e60570 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 30 May 2005 17:46:29 +0000 Subject: [PATCH] Removed ISSO::i and ISSO::input; the only input mechanism is ISSO::in --- kernel.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/kernel.php b/kernel.php index c885145..2e4b5f7 100644 --- a/kernel.php +++ b/kernel.php @@ -148,8 +148,6 @@ class Shared_Object_Framework * @var array * @see sanitize(), exec_sanitize_data() */ - var $input = array(); - var $i = array(); var $in = array(); /** @@ -519,9 +517,7 @@ class Shared_Object_Framework */ function exec_sanitize_data() { - $this->input = $this->_sanitize_input_recursive(array_merge($_GET, $_POST)); - $this->i =& $this->input; - $this->in =& $this->input; + $this->in = $this->_sanitize_input_recursive(array_merge($_GET, $_POST)); // we're now using magic quotes if ($this->escapestrings) { -- 2.43.5