summaryrefslogtreecommitdiff
path: root/doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn
blob: 5c3d1bbd2e0c03b37ea44b63ce36b012a5777631 (plain)

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.