diff options
author | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-01-20 06:01:21 +0100 |
---|---|---|
committer | Pascal Kriete <pascal.kriete@ellislab.com> | 2011-01-20 06:01:21 +0100 |
commit | aaec1e491f99e9d733b06b721d8d4d1ae778135a (patch) | |
tree | c02cfbc8a2835f4d22681abec2c696c973e4fc46 /system/core/CodeIgniter.php | |
parent | 3b889a970adbfc3ca015803f80a2a45066abcbd9 (diff) |
Renaming the unicode class to utf8 so we don't run the risk of violating the Unicode Consortium's trademark.
Diffstat (limited to 'system/core/CodeIgniter.php')
-rw-r--r-- | system/core/CodeIgniter.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 742903653..2d3f24958 100644 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -129,17 +129,17 @@ /* * ------------------------------------------------------ - * Instantiate the Unicode class + * Instantiate the UTF-8 class * ------------------------------------------------------ * - * Note: Order here is rather important as the Unicode + * Note: Order here is rather important as the UTF-8 * class needs to be used very early on, but it cannot * properly determine if UTf-8 can be supported until * after the Config class is instantiated. * */ - $UNI =& load_class('Unicode', 'core'); + $UNI =& load_class('Utf8', 'core'); /* * ------------------------------------------------------ |