From 3fb562f9c12cd222526aa64e29e0aa84da5114e1 Mon Sep 17 00:00:00 2001 From: Samuel Demirdjian Date: Sat, 25 Jan 2014 09:28:32 +0200 Subject: [PATCH] replaced iconv with mb_convert_encoding in comments --- classes/kohana/utf8.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/kohana/utf8.php b/classes/kohana/utf8.php index 4e5a2628..72fba896 100644 --- a/classes/kohana/utf8.php +++ b/classes/kohana/utf8.php @@ -80,7 +80,7 @@ class Kohana_UTF8 { // Disable substituting illigal characters with the default '?' character mb_substitute_character('none'); - // iconv is expensive, so it is only used when needed + // mb_convert_encoding is expensive, so it is only used when needed $var = mb_convert_encoding($var, $charset, $charset); // Reset mb_substitute_character() value back to the original setting -- 2.11.4.GIT