From d6c69981ba89e52bec1240307b419806503e1283 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 25 Jun 2008 17:29:23 +0000 Subject: fixed accidental removal of $converted_string in xss_clean() for image comparison --- system/libraries/Input.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'system/libraries/Input.php') diff --git a/system/libraries/Input.php b/system/libraries/Input.php index 04b373e41..5f47909ac 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -607,6 +607,11 @@ class CI_Input { $str = str_replace("\t", ' ', $str); } + /* + * Capture converted string for later comparison + */ + $converted_string = $str; + /* * Not Allowed Under Any Conditions */ -- cgit v1.2.3-24-g4f1b