diff options
author | Andrey Andreev <narf@devilix.net> | 2014-06-29 19:55:56 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-06-29 19:55:56 +0200 |
commit | c6b7f3e9d97ada4dd42098fa6b24c1c9799497f2 (patch) | |
tree | 40acb7fe2d73137697fda6f727dd8f1754fb5ccc /system/core/Security.php | |
parent | 42183de45621e09621399ee161135f995af552ff (diff) | |
parent | 3820b5a7c4533599f114909376b2546ee282978c (diff) |
Merge pull request #3121 from GrahamCampbell/patch-1
Fixed Typo In Security.php
Diffstat (limited to 'system/core/Security.php')
-rwxr-xr-x | system/core/Security.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Security.php b/system/core/Security.php index 2cf214b18..c4621d588 100755 --- a/system/core/Security.php +++ b/system/core/Security.php @@ -605,7 +605,7 @@ class CI_Security { { if (($char = array_search($matches[$i].';', $_entities, TRUE)) !== FALSE) { - $replace[$matches[$i]] = $character; + $replace[$matches[$i]] = $char; } } |