Version 0.9 ()
------------------------------------------------------------------------
+ * Allow UTF-8 recoding using mb_* functions (Tadashi Jokagi)
+
* Allow to switch charsets ("Native" / "UTF-8"). (garvinhicking)
* Permissions: The permission "adminImagesViewOthers" now controls
if (strtolower(LANG_CHARSET) != 'utf-8') {
if (function_exists('iconv')) {
return iconv(LANG_CHARSET, 'UTF-8', $string);
+ } else if (function_exists('mb_convert_encoding')) {
+ return mb_convert_encoding($string, 'UTF-8', LANG_CHARSET);
} else {
return utf8_encode($string);
}