aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/comments.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-07-04 16:19:22 -0400
committerJoey Hess <joey@kitenet.net>2010-07-04 16:19:22 -0400
commite72ef3b070b18f4cb0a667be915266b27d7d3071 (patch)
treec63e75ad85f858a6a025f3b8dbb3e3685d81bb84 /IkiWiki/Plugin/comments.pm
parentacde95751260e305da3d8d84b6b09dcd3b2d03b6 (diff)
downloadikiwiki-e72ef3b070b18f4cb0a667be915266b27d7d3071.tar
ikiwiki-e72ef3b070b18f4cb0a667be915266b27d7d3071.tar.gz
comment: Fix problem moderating comments of certian pages with utf-8 in their name.
Diffstat (limited to 'IkiWiki/Plugin/comments.pm')
-rw-r--r--IkiWiki/Plugin/comments.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm
index d34951570..30ade5634 100644
--- a/IkiWiki/Plugin/comments.pm
+++ b/IkiWiki/Plugin/comments.pm
@@ -569,6 +569,7 @@ sub commentmoderation ($$) {
my $added=0;
foreach my $id (keys %vars) {
if ($id =~ /(.*)\._comment(?:_pending)?$/) {
+ $id=decode_utf8($id);
my $action=$cgi->param($id);
next if $action eq 'Defer' && ! $rejectalldefer;