diff options
author | Andrey Andreev <narf@devilix.net> | 2014-12-05 10:35:08 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-12-05 10:35:08 +0100 |
commit | bc11439c5f7fbbb1ef0257f8083c375eeb9dd79c (patch) | |
tree | aad47028ea3237e1744b5800438d52a9973fb7c6 /tests/codeigniter | |
parent | 87e2016258a6dd60d3fd322e0162c95038856850 (diff) | |
parent | 61a0aee144710228ea30afa672adf530623d35d5 (diff) |
Merge pull request #3323 from Razican/remove-uri-filter
Remove conversion of 'programmatic characters' to HTML entities in CI_URI::filter_uri()
Close #47
Diffstat (limited to 'tests/codeigniter')
-rw-r--r-- | tests/codeigniter/core/URI_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/URI_test.php b/tests/codeigniter/core/URI_test.php index b05a385d6..4b1d644e3 100644 --- a/tests/codeigniter/core/URI_test.php +++ b/tests/codeigniter/core/URI_test.php @@ -138,7 +138,7 @@ class URI_test extends CI_TestCase { $str = $this->uri->filter_uri('$destroy_app(foo)'); - $this->assertEquals($str, '$destroy_app(foo)'); + $this->assertEquals($str, '$destroy_app(foo)'); } // -------------------------------------------------------------------- |