aggregate: Avoid bug that caused immediate expiration of items with a date in the future.
parent
798a601395
commit
f36080ae02
|
@ -625,6 +625,10 @@ sub add_page (@) { #{{{
|
||||||
# Store it in pagectime for expiry code to use also.
|
# Store it in pagectime for expiry code to use also.
|
||||||
$IkiWiki::pagectime{$guid->{page}}=$mtime;
|
$IkiWiki::pagectime{$guid->{page}}=$mtime;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
# Dummy value for expiry code.
|
||||||
|
$IkiWiki::pagectime{$guid->{page}}=time;
|
||||||
|
}
|
||||||
} #}}}
|
} #}}}
|
||||||
|
|
||||||
sub htmlescape ($) { #{{{
|
sub htmlescape ($) { #{{{
|
||||||
|
|
|
@ -13,6 +13,8 @@ ikiwiki (2.67) UNRELEASED; urgency=low
|
||||||
* inline: Allow MTIME to be used in inlinepage.tmpl.
|
* inline: Allow MTIME to be used in inlinepage.tmpl.
|
||||||
* inline: Use the feed's description in the rss and atom links.
|
* inline: Use the feed's description in the rss and atom links.
|
||||||
Closes: #502113
|
Closes: #502113
|
||||||
|
* aggregate: Avoid bug that caused immediate expiration of items
|
||||||
|
with a date in the future.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Mon, 06 Oct 2008 16:07:50 -0400
|
-- Joey Hess <joeyh@debian.org> Mon, 06 Oct 2008 16:07:50 -0400
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue