summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2012-05-15 16:10:49 -0700
committerBharat Mediratta <bharat@menalto.com>2012-05-15 16:10:49 -0700
commitce209b9eaac301b8494d7d6faa72d013ed1c6cb9 (patch)
tree80e9c7ddf6f06a56e3bb38369eaf51808de01bec
parentb63db2e5dbf924636a0ce47260d5ccfa2df0692a (diff)
Fix a typo leading to notification module not sending any text. Fixes #1862.
-rw-r--r--modules/notification/helpers/notification.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/notification/helpers/notification.php b/modules/notification/helpers/notification.php
index 0d66e6db..8ece698e 100644
--- a/modules/notification/helpers/notification.php
+++ b/modules/notification/helpers/notification.php
@@ -174,7 +174,7 @@ class notification {
->subject($pending->subject)
->header("Mime-Version", "1.0")
->header("Content-Type", "text/html; charset=UTF-8")
- ->message($pending->body)
+ ->message($pending->text)
->send();
$pending->delete();
} else {