mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 16:10:55 +00:00
fix #2125
This commit is contained in:
parent
3f67c62dd8
commit
fb2343567b
@ -145,7 +145,7 @@ outFor:
|
||||
if v, ok := arg.(time.Time); ok {
|
||||
if fi != nil && fi.fieldType == TypeDateField {
|
||||
arg = v.In(tz).Format(formatDate)
|
||||
} else if fi.fieldType == TypeDateTimeField {
|
||||
} else if fi != nil && fi.fieldType == TypeDateTimeField {
|
||||
arg = v.In(tz).Format(formatDateTime)
|
||||
} else {
|
||||
arg = v.In(tz).Format(formatTime)
|
||||
|
Loading…
Reference in New Issue
Block a user