diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2023-11-21 15:32:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-21 15:32:38 +0100 |
commit | 6475f2f8be91c3c5a08571027327f86084f72738 (patch) | |
tree | 38002e4afb88ffc32d03562237df861075ee6194 | |
parent | f5a40c22192cd0fa0ccd9db8cd3505b9c1d437a6 (diff) | |
download | nextcloud-server-6475f2f8be91c3c5a08571027327f86084f72738.tar.gz nextcloud-server-6475f2f8be91c3c5a08571027327f86084f72738.zip |
Add quotation marks
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
-rw-r--r-- | apps/settings/lib/SetupChecks/PhpDefaultCharset.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/PhpDefaultCharset.php b/apps/settings/lib/SetupChecks/PhpDefaultCharset.php index 7b6ab54d9b3..5728effaa39 100644 --- a/apps/settings/lib/SetupChecks/PhpDefaultCharset.php +++ b/apps/settings/lib/SetupChecks/PhpDefaultCharset.php @@ -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')); } } } |