summaryrefslogtreecommitdiff
path: root/inc/Mailer.class.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-06-23 13:13:40 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-06-23 13:13:40 +0200
commit4c89a7f6d57c5017beea08f1e2d3658397495e96 (patch)
tree5f740df477c86cfe7526657a061f90de8b403e41 /inc/Mailer.class.php
parent4d18e93617feab03d64a5e20ea2585a869b3e86a (diff)
downloadrpg-4c89a7f6d57c5017beea08f1e2d3658397495e96.tar.gz
rpg-4c89a7f6d57c5017beea08f1e2d3658397495e96.tar.bz2
another bad comparison fixed
Diffstat (limited to 'inc/Mailer.class.php')
-rw-r--r--inc/Mailer.class.php2
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();