Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix the warning appearing check setup when mail_smtpmode is not confi…
…gured.

Closes #11107
  • Loading branch information
pachulo committed Nov 10, 2018
commit ea10c6a141ae7dcd813bc17f81a3f934e9ba32b6
2 changes: 1 addition & 1 deletion settings/Controller/CheckSetupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ protected function getCronErrors() {
}

protected function isPhpMailerUsed(): bool {
return $this->config->getSystemValue('mail_smtpmode', 'php') === 'php';
return $this->config->getSystemValue('mail_smtpmode') === 'php';
}

protected function hasOpcacheLoaded(): bool {
Expand Down