mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Small adjustment to SiteInfo init
After a visual inspection to make (pretty) sure it is correct re multiple languages. Updates #2309
This commit is contained in:
parent
2f7e8df5ba
commit
28696b5dca
2 changed files with 5 additions and 2 deletions
|
@ -83,7 +83,10 @@ func (l *Language) SetParam(k string, v interface{}) {
|
|||
l.params[k] = v
|
||||
}
|
||||
|
||||
func (l *Language) GetBool(key string) bool { return cast.ToBool(l.Get(key)) }
|
||||
|
||||
func (l *Language) GetString(key string) string { return cast.ToString(l.Get(key)) }
|
||||
|
||||
func (ml *Language) GetStringMap(key string) map[string]interface{} {
|
||||
return cast.ToStringMap(ml.Get(key))
|
||||
}
|
||||
|
|
|
@ -909,10 +909,10 @@ func (s *Site) initializeSiteInfo() {
|
|||
Languages: languages,
|
||||
defaultContentLanguageInSubdir: defaultContentInSubDir,
|
||||
GoogleAnalytics: lang.GetString("GoogleAnalytics"),
|
||||
RSSLink: permalinkStr(viper.GetString("RSSUri")),
|
||||
RSSLink: permalinkStr(lang.GetString("RSSUri")),
|
||||
BuildDrafts: viper.GetBool("BuildDrafts"),
|
||||
canonifyURLs: viper.GetBool("CanonifyURLs"),
|
||||
preserveTaxonomyNames: viper.GetBool("PreserveTaxonomyNames"),
|
||||
preserveTaxonomyNames: lang.GetBool("PreserveTaxonomyNames"),
|
||||
AllPages: &s.AllPages,
|
||||
Pages: &s.Pages,
|
||||
rawAllPages: &s.rawAllPages,
|
||||
|
|
Loading…
Reference in a new issue