summaryrefslogtreecommitdiffstats
path: root/system/core/CodeIgniter.php
diff options
context:
space:
mode:
authorPascal Kriete <pascal.kriete@ellislab.com>2011-01-20 06:01:21 +0100
committerPascal Kriete <pascal.kriete@ellislab.com>2011-01-20 06:01:21 +0100
commitabb175d87f6c80227351b0287095206240c30879 (patch)
tree1584cdac7ddb4680576737d2624ccd5492586430 /system/core/CodeIgniter.php
parent705a3eec44635f3fada8daa2886d409e6447ca12 (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.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php
index 595e00f27..539cc05b9 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');
/*
* ------------------------------------------------------