diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-01-28 22:57:22 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-28 22:57:22 -0500 |
commit | 9f25e3436b2b918845acbd8cf2ff2d358e0ea105 (patch) | |
tree | a804ce3980de095a7d01215769a24acc3cdd47d8 /IkiWiki/Rcs/git.pm | |
parent | 0f76f8774d67edcd5a31cfe918ef16819a54ee59 (diff) | |
download | ikiwiki-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/Rcs/git.pm')
-rw-r--r-- | IkiWiki/Rcs/git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/git.pm b/IkiWiki/Rcs/git.pm index 271104f3e..f70582136 100644 --- a/IkiWiki/Rcs/git.pm +++ b/IkiWiki/Rcs/git.pm @@ -372,7 +372,7 @@ sub rcs_recentchanges ($) { #{{{ my ($sha1, $when) = ( $ci->{'sha1'}, - time - $ci->{'author_epoch'} + $ci->{'author_epoch'} ); my (@pages, @messages); |