From d98cbb8bddda2f56dc1dc585a7f3a01fa9ed33c9 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Fri, 24 Jan 2014 18:34:27 +0200 Subject: Add &newline; and &tab; to CI_Security:: --- system/core/Security.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'system/core') 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" ); /** -- cgit v1.2.3-24-g4f1b