diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-06-06 00:51:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-05 18:51:10 -0400 |
commit | bbe13b60cdf93d8296f4c6dab624df2b571db234 (patch) | |
tree | 5a0423757a313943ef845d5d8c826ea3bc3e9736 /modules | |
parent | cc9d2deb6029c44caf3157799d6f61593cecac4d (diff) | |
download | gitea-bbe13b60cdf93d8296f4c6dab624df2b571db234.tar.gz gitea-bbe13b60cdf93d8296f4c6dab624df2b571db234.zip |
Fix timezone on issue deadline (#11697)
* Fix timezone on issue deadline
* FormatDate
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/timeutil/timestamp.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/timeutil/timestamp.go b/modules/timeutil/timestamp.go index f70da9db74..b1c60c3084 100644 --- a/modules/timeutil/timestamp.go +++ b/modules/timeutil/timestamp.go @@ -75,6 +75,11 @@ func (ts TimeStamp) FormatShort() string { return ts.Format("Jan 02, 2006") } +// FormatDate formats a date in YYYY-MM-DD server time zone +func (ts TimeStamp) FormatDate() string { + return time.Unix(int64(ts), 0).String()[:10] +} + // IsZero is zero time func (ts TimeStamp) IsZero() bool { return ts.AsTimeInLocation(time.Local).IsZero() |