Fix Viperized .Site.Params
authorPhil Pennock <pdp@spodhuis.org>
Tue, 13 May 2014 19:56:06 +0000 (12:56 -0700)
committerspf13 <steve.francia@gmail.com>
Wed, 28 May 2014 22:15:23 +0000 (18:15 -0400)
commit280df4e380798d336826e9ce5446640e881d2b06
treeddbfac3745a519e28300a771cdde2eef1e8604bf
parente98f0014f2f46ff4b342d5eb3062d4fb1e6d4184
Fix Viperized .Site.Params

git bisect identified 62dd1d4 as the breaking commit; when
github.com/spf13/viper was introduced, the Params field was always
empty.

Given a map in YAML in Viper, the return type is
`map[interface{}]interface{}`, _not_ `map[string]interface{}`, even if
`.SetDefault()` has been called with an item of
`map[string]interface{}{}` so the cast assertion on the `.Get("Params")`
always failed.
hugolib/site.go