You are here

function dhtml_menu_update_7105 in DHTML Menu 7

#7105: Ensure that 'Filter type' is set.

File

./dhtml_menu.install, line 188
dhtml_menu.install Installation and update functions for the DHTML Menu module.

Code

function dhtml_menu_update_7105() {
  $settings = variable_get('dhtml_menu_settings');
  if (!isset($settings['filter']['type'])) {
    $settings['filter']['type'] = 'blacklist';
    variable_set('dhtml_menu_settings', $settings);
  }
}