Fix the warning appearing check setup when mail_smtpmode is not configured.
Closes #11107
This commit is contained in:
parent
cc96b93f95
commit
ea10c6a141
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ Raw output
|
|||
}
|
||||
|
||||
protected function isPhpMailerUsed(): bool {
|
||||
return $this->config->getSystemValue('mail_smtpmode', 'php') === 'php';
|
||||
return $this->config->getSystemValue('mail_smtpmode') === 'php';
|
||||
}
|
||||
|
||||
protected function hasOpcacheLoaded(): bool {
|
||||
|
|
Loading…
Reference in a new issue