summaryrefslogtreecommitdiff
path: root/modules/notification
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-08-15 01:59:54 -0700
committerBharat Mediratta <bharat@menalto.com>2010-08-15 01:59:54 -0700
commitff1d8aea2f2805f85ce3cc7e4079d04fb9f1bac4 (patch)
tree4e190557b981ad9d551593c8ad45e0f9d09f5f3f /modules/notification
parenta1be33f6ab9672cd4886e5b607001d30368613a1 (diff)
We use UTF-8 everywhere. Fixes ticket #1285.
Diffstat (limited to 'modules/notification')
-rw-r--r--modules/notification/helpers/notification.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/notification/helpers/notification.php b/modules/notification/helpers/notification.php
index 0cf536bc..e4212203 100644
--- a/modules/notification/helpers/notification.php
+++ b/modules/notification/helpers/notification.php
@@ -185,7 +185,7 @@ class notification {
->to($email)
->subject($pending->subject)
->header("Mime-Version", "1.0")
- ->header("Content-type", "text/html; charset=utf-8")
+ ->header("Content-Type", "text/html; charset=UTF-8")
->message($pending->body)
->send();
$pending->delete();
@@ -199,7 +199,7 @@ class notification {
->to($email)
->subject(t("Multiple events have occurred")) // @todo fix this terrible subject line
->header("Mime-Version", "1.0")
- ->header("Content-type", "text/html; charset=utf-8")
+ ->header("Content-Type", "text/html; charset=UTF-8")
->message($text)
->send();
}
@@ -213,7 +213,7 @@ class notification {
->to($subscribers)
->subject($subject)
->header("Mime-Version", "1.0")
- ->header("Content-type", "text/html; charset=utf-8")
+ ->header("Content-Type", "text/html; charset=UTF-8")
->message($text)
->send();
} else {