Make suure SectionPagesMenu setting is always loaded per language

This commit is contained in:
Bjørn Erik Pedersen 2016-09-17 16:53:58 +02:00
parent b6673e5309
commit a7af63037c

View file

@ -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 {