summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHamza Bhatti <tiyowan@gmail.com>2012-03-12 11:36:33 +0100
committertiyowan <tiyowan@gmail.com>2012-03-12 17:31:32 +0100
commita6fd531e348bd345bbbd06b7c5504090d9bd7ca4 (patch)
treefa578ae52e659509d9665b85dd190ffc63591f22
parent2004325337c501b201fe55f653f86d3ba8432d06 (diff)
Remove unused defines from CI_Utf8
-rw-r--r--system/core/Utf8.php11
1 files changed, 1 insertions, 10 deletions
diff --git a/system/core/Utf8.php b/system/core/Utf8.php
index ba3567453..1d5dfc20d 100644
--- a/system/core/Utf8.php
+++ b/system/core/Utf8.php
@@ -57,26 +57,17 @@ class CI_Utf8 {
&& @ini_get('mbstring.func_overload') != 1 // Multibyte string function overloading cannot be enabled
&& $CFG->item('charset') === 'UTF-8' // Application charset must be UTF-8
)
- {
- define('UTF8_ENABLED', TRUE);
+ {
log_message('debug', 'UTF-8 Support Enabled');
// set internal encoding for multibyte string functions if necessary
- // and set a flag so we don't have to repeatedly use extension_loaded()
- // or function_exists()
if (extension_loaded('mbstring'))
{
- define('MB_ENABLED', TRUE);
mb_internal_encoding('UTF-8');
}
- else
- {
- define('MB_ENABLED', FALSE);
- }
}
else
{
- define('UTF8_ENABLED', FALSE);
log_message('debug', 'UTF-8 Support Disabled');
}
}