diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-05-12 23:43:54 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-05-12 23:43:54 +0200 |
commit | 751506e7dd58dd1c257c7170b61fe1f439e25021 (patch) | |
tree | ba6af5d9ceeaa7e1a03d716bf593b11a30ed6067 /system/libraries/Input.php | |
parent | 15dcf49a0ea6895cbf009dc15277858cfdd422ef (diff) |
fixed a misspelling in the Input library of CDATA
Diffstat (limited to 'system/libraries/Input.php')
-rw-r--r-- | system/libraries/Input.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Input.php b/system/libraries/Input.php index e3515661d..f98757947 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -666,7 +666,7 @@ class CI_Input { '-moz-binding' => '[removed]',
'<!--' => '<!--',
'-->' => '-->',
- '<!CDATA[' => '<![CDATA['
+ '<![CDATA[' => '<![CDATA['
);
foreach ($bad as $key => $val)
|