diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-06-23 12:52:34 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-06-23 12:52:34 +0200 |
commit | 4d18e93617feab03d64a5e20ea2585a869b3e86a (patch) | |
tree | 2c8d26788c3a635ef4027f1f363554f147896b11 | |
parent | 87ada0b835f589d890ec6cf9cc99e679f6ffef87 (diff) | |
download | rpg-4d18e93617feab03d64a5e20ea2585a869b3e86a.tar.gz rpg-4d18e93617feab03d64a5e20ea2585a869b3e86a.tar.bz2 |
fixed wrong comparison in Mailer::dump()
-rw-r--r-- | inc/Mailer.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Mailer.class.php b/inc/Mailer.class.php index 507150d00..93845497e 100644 --- a/inc/Mailer.class.php +++ b/inc/Mailer.class.php @@ -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; |