From: Joey Hess Date: Thu, 16 Oct 2008 22:20:16 +0000 (-0400) Subject: aggregate: Avoid bug that caused immediate expiration of items with a date in the... X-Git-Tag: 2.67~4 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/f36080ae026d630c180e4a73709d09ca779a0c2e?ds=inline aggregate: Avoid bug that caused immediate expiration of items with a date in the future. --- diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm index 26c5cc9ae..c18784e8b 100644 --- a/IkiWiki/Plugin/aggregate.pm +++ b/IkiWiki/Plugin/aggregate.pm @@ -625,6 +625,10 @@ sub add_page (@) { #{{{ # Store it in pagectime for expiry code to use also. $IkiWiki::pagectime{$guid->{page}}=$mtime; } + else { + # Dummy value for expiry code. + $IkiWiki::pagectime{$guid->{page}}=time; + } } #}}} sub htmlescape ($) { #{{{ diff --git a/debian/changelog b/debian/changelog index ecef4f158..43c53953e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,8 @@ ikiwiki (2.67) UNRELEASED; urgency=low * inline: Allow MTIME to be used in inlinepage.tmpl. * inline: Use the feed's description in the rss and atom links. Closes: #502113 + * aggregate: Avoid bug that caused immediate expiration of items + with a date in the future. -- Joey Hess Mon, 06 Oct 2008 16:07:50 -0400