diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-11-04 19:20:24 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-11-04 19:20:24 +0000 |
commit | b78e93098b29a9fbefde840e2cddc34c5e3f9745 (patch) | |
tree | b1ded861b98533ac1519e95d5b7f07bc12593ba9 /IkiWiki | |
parent | 2e4cefdc3edb8ebca6861ec4010fa2358c88c648 (diff) |
* Fix issue with aggregate plugin updating expired pages.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/aggregate.pm | 1 |
1 files changed, 1 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 |