commit | 6984aaf27f53b91ab1eafcdccd5fb871dfcd5f18 | [log] [tgz] |
---|---|---|
author | Pascal Kriete <pascal.kriete@ellislab.com> | Tue Apr 05 14:58:04 2011 -0400 |
committer | Pascal Kriete <pascal.kriete@ellislab.com> | Tue Apr 05 14:58:04 2011 -0400 |
tree | d0dc8f1407fdd82c7c6605fae37780f4d34f31b2 | |
parent | 14a0ac63a9dfb72e4681c37f7727cd48882152bd [diff] [blame] |
Removing security loading calls.
diff --git a/system/helpers/typography_helper.php b/system/helpers/typography_helper.php index 302bf45..19b4eec 100644 --- a/system/helpers/typography_helper.php +++ b/system/helpers/typography_helper.php
@@ -84,9 +84,8 @@ { function entity_decode($str, $charset='UTF-8') { - $CI =& get_instance(); - $CI->load->library('security'); - return $CI->security->entity_decode($str, $charset); + global $SEC; + return $SEC->entity_decode($str, $charset); } }