Skip to content
Snippets Groups Projects

ISTWCMS-6512 Change from elseif to else for branding_menu_style variable

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -173,7 +173,7 @@ function uw_fdsu_theme_resp_preprocess_region(&$variables) {
$variables['branding_menu_style'] = theme_get_setting('wcms_branding_menu_style', 'uw_fdsu_theme_resp') ? theme_get_setting('wcms_branding_menu_style', 'uw_fdsu_theme_resp') : 'compressed';
}
// The menu style is set to 'compressed' if the level is not 'full'.
elseif ($variables['branding_level'] != 'full') {
else {
$variables['branding_menu_style'] = 'compressed';
}
Loading