I see the ticket view page display like
username added on 2015-10-29 08:51:00:
In fact, it should be 2015-10-29 16:51:00:
My time zone is GMT+8, so I changed the view ticket from
...
query {SELECT datetime(tkt_mtime) AS xdate, login AS xlogin,
...
html " added on $xdate:\n"
...
To
...
query {SELECT datetime(tkt_mtime+8/24) AS xdate, login AS xlogin,
...
html " added on $xdate:\n"
...
But, it won't work.