Add quotation marks

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

@ -40,7 +40,7 @@ class PhpOutputBuffering implements ISetupCheck {
}
public function getName(): string {
return $this->l10n->t('PHP output_buffering option');
return $this->l10n->t('PHP "output_buffering" option');
}
public function run(): SetupResult {
@ -48,7 +48,7 @@ class PhpOutputBuffering implements ISetupCheck {
if ($value === '' || $value === '0') {
return SetupResult::success($this->l10n->t('Disabled'));
} else {
return SetupResult::error($this->l10n->t('PHP configuration option output_buffering must be disabled'));
return SetupResult::error($this->l10n->t('PHP configuration option "output_buffering" must be disabled'));
}
}
}