2008-11-11 06:23:20 +01:00
|
|
|
Using bzr, the dates for changes on the RecentChanges page all start
|
|
|
|
slightly before the Unix epoch.
|
|
|
|
|
|
|
|
Changing line 249 of bzr.pm from
|
|
|
|
|
|
|
|
` when => time - str2time($info->{"timestamp"}),`
|
|
|
|
|
|
|
|
to
|
|
|
|
|
|
|
|
` when => str2time($info->{"timestamp"}),`
|
|
|
|
|
|
|
|
fixed this for me.
|
2008-11-11 19:44:39 +01:00
|
|
|
|
|
|
|
> Weird, I wonder why it was written to return an absolute time like that
|
|
|
|
> in the first place? Can't have ever been right. Fixed, thanks. --[[Joey]]
|
|
|
|
> [[done]]
|