Author: ptw
Date: 2007-07-02 06:24:19 -0700 (Mon, 02 Jul 2007)
New Revision: 5578
Modified:
tools/trunk/svn/review-mail.pl
Log:
Change 20070702-ptw-I by [EMAIL PROTECTED] on 2007-07-02 09:22:46 EDT
in /Users/ptw/OpenLaszlo/tools/trunk
for http://svn.openlaszlo.org/tools/trunk
Summary: svn tools tweaks
Technical Reviewer: ben (pending)
QA Reviewer: jgrandy (pending)
Details:
encode mail body before escaping
Tests:
IWFM
Modified: tools/trunk/svn/review-mail.pl
===================================================================
--- tools/trunk/svn/review-mail.pl 2007-07-02 13:21:41 UTC (rev 5577)
+++ tools/trunk/svn/review-mail.pl 2007-07-02 13:24:19 UTC (rev 5578)
@@ -12,6 +12,7 @@
use URI::URL;
use URI::Escape;
+use Encode qw(encode);
$to = '';
$cc = '[EMAIL PROTECTED]';
@@ -53,7 +54,7 @@
";
$url = new URI::URL($url_string);
-$url->query($query_string . uri_escape($body));
+$url->query($query_string . uri_escape(encode("UTF-8", $body)));
print $url->as_string;
_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins