]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn
5c3d1bbd2e0c03b37ea44b63ce36b012a5777631
[ikiwiki.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.
3
4 Changing line 249 of bzr.pm from
5
6 `                        when       => time - str2time($info->{"timestamp"}),`
7
8 to
9
10 `                        when       => str2time($info->{"timestamp"}),`
11
12 fixed this for me.