Skip to content
Snippets Groups Projects
Commit 4d18e936 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed wrong comparison in Mailer::dump()

parent 87ada0b8
No related branches found
No related tags found
No related merge requests found
......@@ -566,7 +566,7 @@ class Mailer {
public function dump(){
$this->cleanHeaders();
$body = $this->prepareBody();
if($body === 'false') return false;
if($body === false) return false;
$headers = $this->prepareHeaders();
return $headers.MAILHEADER_EOL.$body;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment