From 8d3c89f0c75c31c5e17a661150662e3efd3a146e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 7 May 2010 13:44:24 -0400 Subject: [PATCH] bugfixes --- IkiWiki/Plugin/comments.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm index 76f6551ae..93c8c4061 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -557,7 +557,7 @@ sub commentmoderation ($$) { my %vars=$cgi->Vars; my $added=0; foreach my $id (keys %vars) { - if ($id =~ /(.*)\Q._comment(?:_pending)?\E$/) { + if ($id =~ /(.*)\._comment(?:_pending)?$/) { my $action=$cgi->param($id); next if $action eq 'Defer' && ! $rejectalldefer; @@ -621,7 +621,7 @@ sub commentmoderation ($$) { id => $id, view => $preview, } - } sort { $b->[1] <=> $a->[1] } comments_pending(); + } sort { $b->[2] <=> $a->[2] } comments_pending(); my $template=template("commentmoderation.tmpl"); $template->param( -- 2.44.0