Skip to content

Commit

Permalink
Sendmail transport - wrong comparison fix
Browse files Browse the repository at this point in the history
  • Loading branch information
develart-projects committed Aug 24, 2023
1 parent 61cf50b commit 497d319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Mail/Transport/Sendmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function _sendMail()
// Sanitize the From header
// https://github.com/Shardj/zf1-future/issues/326

if ( empty($fromEmailHeader) === FALSE ) { // nothing to worry about
if ( empty($fromEmailHeader) === TRUE ) { // nothing to worry about
goto processMail;
}

Expand Down

0 comments on commit 497d319

Please sign in to comment.