summaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-11-11 13:40:50 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-11-11 13:40:50 -0500
commit72a2fa9441dc37bc2a6ce6337b940271a66b6ec1 (patch)
tree2a1cf33866bd41c679079a0a38dceac1d21ab0fc /doc/bugs
parent700c4bef294a792d507f6cfc34dd4dd5427f2a7f (diff)
parentfb9130c18c073d263d3eaa1dd5ef1e78b60f868a (diff)
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn12
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.