no longer need the global using_mb_charset as version 3 is utf-8-only

This commit is contained in:
Marc Delisle
2008-05-25 13:16:31 +00:00
parent 59e00a6f0b
commit 050ba7b6cc
2 changed files with 2 additions and 15 deletions

View File

@@ -264,7 +264,7 @@ if (@extension_loaded('mbstring') && @ini_get('mbstring.func_overload') > 1) {
* Nijel: mbstring is used for handling multibyte inside parser, so it is good
* to tell user something might be broken without it, see bug #1063149.
*/
if ($GLOBALS['using_mb_charset'] && !@extension_loaded('mbstring')) {
if (! @extension_loaded('mbstring')) {
trigger_error($strMbExtensionMissing, E_USER_WARNING);
}