new patch

master
Changaco 2013-06-04 06:14:15 -04:00 committed by admin
parent ea1bed5410
commit d2856920ec
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
[[!tag patch]]
<pre>
From 5ad35b2805ca50478f07d810e57e7c9b8f4eddea Mon Sep 17 00:00:00 2001
From: Changaco &lt;changaco@changaco.net>
Date: Tue, 4 Jun 2013 02:54:35 +0200
Subject: [PATCH] fix encoding issue in blogspam plugin
RPC::XML uses ascii as default encoding, we have to tell it to use utf8.
Without this, ikiwiki returns "failed to get response from blogspam server"
every time a non-ascii character is used in a content that needs checking.
---
IkiWiki/Plugin/blogspam.pm | 1 +
1 file changed, 1 insertion(+)
diff --git a/IkiWiki/Plugin/blogspam.pm b/IkiWiki/Plugin/blogspam.pm
index d32c2f1..e48ed72 100644
--- a/IkiWiki/Plugin/blogspam.pm
+++ b/IkiWiki/Plugin/blogspam.pm
@@ -53,6 +53,7 @@ sub checkconfig () {
eval q{
use RPC::XML;
use RPC::XML::Client;
+ $RPC::XML::ENCODING = 'utf-8';
};
error $@ if $@;
}
--
1.8.3
</pre>