aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/CGI.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-28 22:57:22 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-28 22:57:22 -0500
commit9f25e3436b2b918845acbd8cf2ff2d358e0ea105 (patch)
treea804ce3980de095a7d01215769a24acc3cdd47d8 /IkiWiki/CGI.pm
parent0f76f8774d67edcd5a31cfe918ef16819a54ee59 (diff)
downloadikiwiki-9f25e3436b2b918845acbd8cf2ff2d358e0ea105.tar
ikiwiki-9f25e3436b2b918845acbd8cf2ff2d358e0ea105.tar.gz
change rcs_recentchanges when to absolute, not relative, time
No point in using a relative time value in rcs_recentchanges. Different consumers of the info want different things.
Diffstat (limited to 'IkiWiki/CGI.pm')
-rw-r--r--IkiWiki/CGI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm
index 65a1d7fa0..03c448923 100644
--- a/IkiWiki/CGI.pm
+++ b/IkiWiki/CGI.pm
@@ -100,7 +100,7 @@ sub cgi_recentchanges ($) { #{{{
my $changelog=[rcs_recentchanges(100)];
foreach my $change (@$changelog) {
- $change->{when} = concise(ago($change->{when}));
+ $change->{when} = concise(ago(time - $change->{when}));
$change->{user} = userlink($change->{user});