diff options
author | Andrey Andreev <narf@devilix.net> | 2014-01-24 17:34:27 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-01-24 17:34:27 +0100 |
commit | d98cbb8bddda2f56dc1dc585a7f3a01fa9ed33c9 (patch) | |
tree | 7a240fac0c99902cea220806ae061ecf3df00937 /system/core | |
parent | ecc260e0be0cdb55c4e4802b78ddd78b0d8b0ebc (diff) |
Add &newline; and &tab; to CI_Security::
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Security.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/core/Security.php b/system/core/Security.php index d6356f869..32ecbbad3 100644 --- a/system/core/Security.php +++ b/system/core/Security.php @@ -69,7 +69,9 @@ class CI_Security { public $html5_entities = array( ':' => ':', '(' => '(', - ')' => ')' + ')' => ')', + '&newline;', => "\n", + '&tab;', => "\t" ); /** |