diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-06-23 13:13:40 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-06-23 13:13:40 +0200 |
commit | 4c89a7f6d57c5017beea08f1e2d3658397495e96 (patch) | |
tree | 5f740df477c86cfe7526657a061f90de8b403e41 | |
parent | 4d18e93617feab03d64a5e20ea2585a869b3e86a (diff) | |
download | rpg-4c89a7f6d57c5017beea08f1e2d3658397495e96.tar.gz rpg-4c89a7f6d57c5017beea08f1e2d3658397495e96.tar.bz2 |
another bad comparison fixed
-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 93845497e..7661eaa75 100644 --- a/inc/Mailer.class.php +++ b/inc/Mailer.class.php @@ -629,7 +629,7 @@ class Mailer { // make the body $body = $this->prepareBody(); - if($body === 'false') return false; + if($body === false) return false; // cook the headers $headers = $this->prepareHeaders(); |