We use UTF-8 everywhere. Fixes ticket #1285.

This commit is contained in:
Bharat Mediratta
2010-08-15 01:59:54 -07:00
parent a1be33f6ab
commit ff1d8aea2f
7 changed files with 10 additions and 10 deletions

View File

@@ -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 {