mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-19 21:21:39 +02:00
Params map has string as key
Related to issue #540 and commit 3c22ca7c84456b19f2a017719b1533902594e672
This commit is contained in:
@@ -88,11 +88,10 @@ func getDateFormat() string {
|
||||
if params == nil {
|
||||
return time.RFC3339
|
||||
}
|
||||
parms := params.(map[interface{}]interface{})
|
||||
parms := params.(map[string]interface{})
|
||||
layout := parms["DateFormat"]
|
||||
if layout == nil || layout == "" {
|
||||
return time.RFC3339
|
||||
}
|
||||
return layout.(string)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user