diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-04-03 12:04:34 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-04-03 12:04:34 -0700 |
commit | e7f4347a81acd1e757739838c3dcd9660f655a35 (patch) | |
tree | 76a98dbf4d173e4b61571f5d1fb0d89116045728 /system/admin/handlers.go | |
parent | 249fb1d41721a6fb25057f977a0a27daf773c936 (diff) |
set date to UTC times on server create, and updated editor timestamp to increase precision to seconds level
Diffstat (limited to 'system/admin/handlers.go')
-rw-r--r-- | system/admin/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index a585faa..d04adec 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -1531,7 +1531,7 @@ func editHandler(res http.ResponseWriter, req *http.Request) { // create a timestamp if one was not set if ts == "" { - ts = fmt.Sprintf("%d", int64(time.Nanosecond)*time.Now().UnixNano()/int64(time.Millisecond)) + ts = fmt.Sprintf("%d", int64(time.Nanosecond)*time.Now().UTC().UnixNano()/int64(time.Millisecond)) req.PostForm.Set("timestamp", ts) } |