Check-in [d54731dac9]
Not logged in
Overview

SHA1 Hash:d54731dac961d737c3bf3f0674d3895cb729609b
Date: 2007-09-24 23:19:33
User: mjanssen
Comment:Accidently changed time format in timeline_query_for_tty output in checkin aad573b31c reverted so that timeline shows local timestamps again.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/timeline.c from [19a54bcbde] to [34894e4584].

@@ -443,11 +443,11 @@
 const char *timeline_query_for_tty(void){
   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
     @ WHERE blob.rid=event.objid