$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");
}
$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");
}
+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