diff options
author | bcdugga <bcdugga@web> | 2008-11-11 00:23:20 -0500 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2008-11-11 00:23:20 -0500 |
commit | ebd9f4ce8ac37f5860a8c3eecaae39bd7ddb03e7 (patch) | |
tree | f244153fb5223a087aa2f085ba5ad4b26ad79847 /doc | |
parent | 8c47f16dccd8a4dd91f365233690bd8139431249 (diff) |
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn b/doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn new file mode 100644 index 000000000..5c3d1bbd2 --- /dev/null +++ b/doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn @@ -0,0 +1,12 @@ +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. |