[Jifty-commit] r1977 - jifty/trunk/lib/Jifty

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Sep 15 20:25:17 EDT 2006


Author: clkao
Date: Fri Sep 15 20:25:15 2006
New Revision: 1977

Modified:
   jifty/trunk/lib/Jifty/Notification.pm

Log:
Encode the body for notification.

Modified: jifty/trunk/lib/Jifty/Notification.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Notification.pm	(original)
+++ jifty/trunk/lib/Jifty/Notification.pm	Fri Sep 15 20:25:15 2006
@@ -267,7 +267,7 @@
   return [
     Email::MIME->create(
       attributes => { charset => 'UTF-8' },
-      body       => $self->full_body
+      body       => Encode::encode_utf8($self->full_body),
     )
   ];
 


More information about the Jifty-commit mailing list