aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-10-19 15:17:00 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-10-19 15:17:00 -0400
commit2321906cd7792925981e1e516dd5a0d4d625641f (patch)
treed335d9668f3cdc8adfc85f2e4249499561deeecd /IkiWiki
parentac8eb2844fc98beeeeae6f1bce2ba69dae1abef7 (diff)
downloadikiwiki-2321906cd7792925981e1e516dd5a0d4d625641f.tar
ikiwiki-2321906cd7792925981e1e516dd5a0d4d625641f.tar.gz
mark up date so relativedate will work
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/aggregate.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm
index c18784e8b..8ef5ca541 100644
--- a/IkiWiki/Plugin/aggregate.pm
+++ b/IkiWiki/Plugin/aggregate.pm
@@ -460,8 +460,10 @@ sub aggregate (@) { #{{{
foreach my $feed (@_) {
$feed->{lastupdate}=time;
$feed->{newposts}=0;
- $feed->{message}=sprintf(gettext("processed ok at %s"),
- displaytime($feed->{lastupdate}));
+ $feed->{message}=sprintf(gettext("last checked %s"),
+ '<span class="date" title="'.
+ localtime($feed->{lastupdate}).'">'.
+ displaytime($feed->{lastupdate}).'</span>');
$feed->{error}=0;
debug(sprintf(gettext("checking feed %s ..."), $feed->{name}));