]> sipb.mit.edu Git - ikiwiki.git/commitdiff
(no commit message)
authorbcdugga <bcdugga@web>
Tue, 11 Nov 2008 05:23:20 +0000 (00:23 -0500)
committerJoey Hess <joey@kitenet.net>
Tue, 11 Nov 2008 05:23:20 +0000 (00:23 -0500)
doc/bugs/bzr_RecentChanges_dates_start_from_1969.mdwn [new file with mode: 0644]

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 (file)
index 0000000..5c3d1bb
--- /dev/null
@@ -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.