diff --git a/phpBB/includes/acp/acp_main.php b/phpBB/includes/acp/acp_main.php index 4986e3db8f..424850c4bd 100644 --- a/phpBB/includes/acp/acp_main.php +++ b/phpBB/includes/acp/acp_main.php @@ -686,7 +686,7 @@ class acp_main 'S_MBSTRING_ENCODING_TRANSLATION_FAIL' => $encoding_translation && ($encoding_translation != 0), 'S_MBSTRING_HTTP_INPUT_FAIL' => !empty($http_input), 'S_MBSTRING_HTTP_OUTPUT_FAIL' => !empty($http_output), - 'S_DEFAULT_CHARSET_FAIL' => $default_charset !== 'UTF-8', + 'S_DEFAULT_CHARSET_FAIL' => $default_charset !== null && strtolower($default_charset) !== 'utf-8', ]); }