mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Make suure SectionPagesMenu setting is always loaded per language
This commit is contained in:
parent
b6673e5309
commit
a7af63037c
1 changed files with 1 additions and 1 deletions
|
@ -880,7 +880,7 @@ func (p *Page) getParam(key string, stringToLower bool) interface{} {
|
|||
|
||||
func (p *Page) HasMenuCurrent(menu string, me *MenuEntry) bool {
|
||||
menus := p.Menus()
|
||||
sectionPagesMenu := viper.GetString("SectionPagesMenu")
|
||||
sectionPagesMenu := helpers.Config().GetString("SectionPagesMenu")
|
||||
|
||||
// page is labeled as "shadow-member" of the menu with the same identifier as the section
|
||||
if sectionPagesMenu != "" && p.Section() != "" && sectionPagesMenu == menu && p.Section() == me.Identifier {
|
||||
|
|
Loading…
Reference in a new issue