diff options
author | Andrey Andreev <narf@devilix.net> | 2014-03-18 22:08:59 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-03-18 22:08:59 +0100 |
commit | 46d2072e5ce0c13f3be2bd909d76eba37964740f (patch) | |
tree | 6a022cbd743aa08c9fb79a5fcca9de371f41b574 /tests/codeigniter/core | |
parent | ebb3aa0edde1efd4829a3ad8dbe0eeac970794cb (diff) |
More xss_clean() improvements
Issue described in https://github.com/EllisLab/CodeIgniter/issues/2667#issuecomment-37980030
+ a false positive
Diffstat (limited to 'tests/codeigniter/core')
-rw-r--r-- | tests/codeigniter/core/Security_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Security_test.php b/tests/codeigniter/core/Security_test.php index 14e042ee2..d4d6be4b5 100644 --- a/tests/codeigniter/core/Security_test.php +++ b/tests/codeigniter/core/Security_test.php @@ -74,7 +74,7 @@ class Security_test extends CI_TestCase { public function test_xss_clean_entity_double_encoded() { $input = '<a href="&#106&#97&#118&#97&#115&#99&#114&#105&#112&#116&#58&#99&#111&#110&#102&#105&#114&#109&#40&#49&#41">Clickhere</a>'; - $this->assertEquals('<a 1>Clickhere</a>', $this->security->xss_clean($input)); + $this->assertEquals('<a >Clickhere</a>', $this->security->xss_clean($input)); } // -------------------------------------------------------------------- |