Diff
Not logged in

Differences From:

File src/timeline.c part of check-in [aad573b31c] - Timeline calculated localtime incorrectly so it didn't display latest changes if user is in TZ UTC+X by mjanssen on 2007-09-24 20:50:30. [view]

To:

File src/timeline.c part of check-in [d54731dac9] - Accidently changed time format in timeline_query_for_tty output in checkin aad573b31c reverted so that timeline shows local timestamps again. by mjanssen on 2007-09-24 23:19:33. Also file src/timeline.c part of check-in [798a48ee46] - Merged mjanssen's timeline updates by jnc on 2007-09-24 23:58:55. [view]

@@ -444,9 +444,9 @@
   static const char zBaseSql[] =
     @ SELECT
     @   blob.rid,
     @   uuid,
-    @   datetime(event.mtime,'utc'),
+    @   datetime(event.mtime,'localtime'),
     @   coalesce(ecomment,comment) || ' (by ' || coalesce(euser,user) || ')',
     @   (SELECT count(*) FROM plink WHERE pid=blob.rid AND isprim),
     @   (SELECT count(*) FROM plink WHERE cid=blob.rid)
     @ FROM event, blob