1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-17 22:28:46 +01:00

[ticket/16698] Enhance check for default charset

PHPBB3-16698
This commit is contained in:
3D-I 2021-02-06 04:42:49 +01:00
parent bb8768b604
commit ecf6acd730

View File

@ -690,7 +690,7 @@ class acp_main
$encoding_translation = $this->php_ini->getString('mbstring.encoding_translation');
$http_input = $this->php_ini->getString('mbstring.http_input');
$http_output = $this->php_ini->getString('mbstring.http_output');
$default_charset = $this->php_ini->getString('default_charset');
$default_charset = strtolower($this->php_ini->getString('default_charset'));
if (extension_loaded('mbstring'))
{
@ -704,7 +704,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 !== 'utf-8',
]);
}