Fix a typo in the last release.
authorJoey Hess <joey@kitenet.net>
Tue, 18 May 2010 18:16:58 +0000 (14:16 -0400)
committerJoey Hess <joey@kitenet.net>
Tue, 18 May 2010 18:16:58 +0000 (14:16 -0400)
IkiWiki/Plugin/comments.pm
debian/changelog

index de193bd12b358d2850a823c3e492af1844b4a292..f2cd8f90aa27f0a963908f587f34a57fddcecf19 100644 (file)
@@ -914,7 +914,7 @@ sub match_comment ($$;@) {
                $IkiWiki::pagesources{$page} :
                $IkiWiki::delpagesources{$page};
        my $type=IkiWiki::pagetype($source);
-       if (defined $type && $type ne "_comment") {
+       if (! defined $type || $type ne "_comment") {
                return IkiWiki::FailReason->new("$page is not a comment");
        }
 
@@ -929,7 +929,7 @@ sub match_comment_pending ($$;@) {
                $IkiWiki::pagesources{$page} :
                $IkiWiki::delpagesources{$page};
        my $type=IkiWiki::pagetype($source);
-       if (defined $type && $type ne "_comment_pending") {
+       if (! defined $type || $type ne "_comment_pending") {
                return IkiWiki::FailReason->new("$page is not a pending comment");
        }
 
index c829f2f067377a21b3172747bb1cf1d29c24267b..da4851d5b7c2dd8ea4e6b8b11af2909715c8ae0a 100644 (file)
@@ -1,3 +1,9 @@
+ikiwiki (3.20100518.2) unstable; urgency=low
+
+  * Fix a typo in the last release.
+
+ -- Joey Hess <joeyh@debian.org>  Tue, 18 May 2010 14:16:30 -0400
+
 ikiwiki (3.20100518) unstable; urgency=low
 
   * page.tmpl: Accidentially broke po plugin's otherlanguages list styling