diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-06-25 19:29:23 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-06-25 19:29:23 +0200 |
commit | d6c69981ba89e52bec1240307b419806503e1283 (patch) | |
tree | 304423ee0bc980de6f2231651d3170f2bbdad12a /system/libraries/Input.php | |
parent | fc18b009de9b1f7c1e70ded6cb69aa94b985d09a (diff) |
fixed accidental removal of $converted_string in xss_clean() for image comparison
Diffstat (limited to 'system/libraries/Input.php')
-rw-r--r-- | system/libraries/Input.php | 5 |
1 files changed, 5 insertions, 0 deletions
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 @@ -608,6 +608,11 @@ class CI_Input { }
/*
+ * Capture converted string for later comparison
+ */
+ $converted_string = $str;
+
+ /*
* Not Allowed Under Any Conditions
*/
|