Add quotation marks

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
pull/41642/head
Valdnet 2023-11-21 15:32:38 +07:00 committed by GitHub
parent f5a40c2219
commit 6475f2f8be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -47,7 +47,7 @@ class PhpDefaultCharset implements ISetupCheck {
if (strtoupper(trim(ini_get('default_charset'))) === 'UTF-8') {
return SetupResult::success('UTF-8');
} else {
return SetupResult::warning($this->l10n->t('PHP configuration option default_charset should be UTF-8'));
return SetupResult::warning($this->l10n->t('PHP configuration option "default_charset" should be UTF-8'));
}
}
}