Thanks so much! I encountered this problem too, and your patch fixes it for me.<br>Jason<br><br><br><br><div class="gmail_quote">On Sun, Apr 4, 2010 at 4:07 PM, S.P.Zeidler <span dir="ltr">&lt;<a href="mailto:spz@serpens.de">spz@serpens.de</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Hi,<br>
<br>
perl FCGI 0.69 onwards is more picky about the strings it gets.<br>
Thus, if you feed it perl strings with utf-8 you get a complaint about<br>
wide characters in the string.<br>
<br>
The following patch takes care of the problem:<br>
--- ./lib/RT/Interface/Web.pm.orig      2009-12-11 17:27:20.000000000 +0000<br>
+++ ./lib/RT/Interface/Web.pm<br>
@@ -88,6 +88,7 @@ sub EscapeUTF8 {<br>
     $$ref =~ s/\)/&amp;#41;/g;<br>
     $$ref =~ s/&quot;/&amp;#34;/g;<br>
     $$ref =~ s/&#39;/&amp;#39;/g;<br>
+    $$ref = Encode::encode_utf8($$ref);<br>
 }<br>
<br>
best regards,<br>
        spz<br>
<font color="#888888">--<br>
<a href="mailto:spz@serpens.de">spz@serpens.de</a> (S.P.Zeidler)<br>
_______________________________________________<br>
List info: <a href="http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-devel" target="_blank">http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-devel</a><br>
</font></blockquote></div><br>