diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-02-05 08:00:42 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-02-05 08:00:42 +0000 |
commit | 1b231063a091325fd801718b5f43ff876ca80ca5 (patch) | |
tree | 44cd483d35873446bef97c0dbafb8bc5dc272879 /modules | |
parent | faa12ad17dec6b0e8f498f7b974ff75518474231 (diff) |
Set default charset to utf8
Diffstat (limited to 'modules')
-rw-r--r-- | modules/notification/helpers/notification.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/notification/helpers/notification.php b/modules/notification/helpers/notification.php index 1b5b1b8f..f5f0aa57 100644 --- a/modules/notification/helpers/notification.php +++ b/modules/notification/helpers/notification.php @@ -134,7 +134,7 @@ class notification { self::_send_message($item, $body); } - + private static function _send_message($item, $body) { $users = self::get_subscribers($item); if (!empty($users)) { @@ -142,7 +142,7 @@ class notification { ->to($users) ->subject($body->subject) ->header("Mime-Version", "1.0") - ->header("Content-type", "text/html; charset=iso-8859-1") + ->header("Content-type", "text/html; charset=utf-8") ->message($body->render()) ->send(); } |