summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-04 19:20:24 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-04 19:20:24 +0000
commitb78e93098b29a9fbefde840e2cddc34c5e3f9745 (patch)
treeb1ded861b98533ac1519e95d5b7f07bc12593ba9
parent2e4cefdc3edb8ebca6861ec4010fa2358c88c648 (diff)
* Fix issue with aggregate plugin updating expired pages.
-rw-r--r--IkiWiki/Plugin/aggregate.pm1
-rw-r--r--debian/changelog6
2 files changed, 7 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm
index 973f7a4ca..4f4182930 100644
--- a/IkiWiki/Plugin/aggregate.pm
+++ b/IkiWiki/Plugin/aggregate.pm
@@ -281,6 +281,7 @@ sub add_page (@) { #{{{
if (exists $guids{$params{guid}}) {
# updating an existing post
$guid=$guids{$params{guid}};
+ next if $guid->{expired};
}
else {
# new post
diff --git a/debian/changelog b/debian/changelog
index ab26024ab..2c5913043 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+ikiwiki (1.33) UNRELEASED; urgency=low
+
+ * Fix issue with aggregate plugin updating expired pages.
+
+ -- Joey Hess <joeyh@debian.org> Sat, 4 Nov 2006 14:19:47 -0500
+
ikiwiki (1.32) unstable; urgency=low
* Add a separate pass to find page links, and only render each page once,