]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
[git.ikiwiki.info.git] / doc / bugs / bzr_RecentChanges_dates_start_from_1969.mdwn
1 Using bzr, the dates for changes on the RecentChanges page all start
2 slightly before the Unix epoch.
4 Changing line 249 of bzr.pm from
6 `                        when       => time - str2time($info->{"timestamp"}),`
8 to
10 `                        when       => str2time($info->{"timestamp"}),`
12 fixed this for me.