diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-09-04 21:29:17 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-09-04 21:29:17 +0200 |
commit | e0fc57bffe1220b149b3f4f9ed800c8dd356bd57 (patch) | |
tree | 81171f1167de0836fda065ea9973a801c133102a /system/libraries | |
parent | 0134ca4d6be32009c7fb7d40cfdbd31e19b970c3 (diff) |
removed random invisible character (ASCII 194) from HTML and PHP files
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Input.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Input.php b/system/libraries/Input.php index 2682ce316..8d68f6998 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -489,14 +489,14 @@ class CI_Input { * XSS Clean
*
* Sanitizes data so that Cross Site Scripting Hacks can be
- * prevented. This function does a fair amount of work but
+ * prevented. This function does a fair amount of work but
* it is extremely thorough, designed to prevent even the
- * most obscure XSS attempts. Nothing is ever 100% foolproof,
+ * most obscure XSS attempts. Nothing is ever 100% foolproof,
* of course, but I haven't been able to get anything passed
* the filter.
*
* Note: This function should only be used to deal with data
- * upon submission. It's not something that should
+ * upon submission. It's not something that should
* be used for general runtime processing.
*
* This function was based in part on some code and ideas I
|