You are here

function simplemenu_update_6003 in SimpleMenu 6

Implementation of hook_update_N().

File

./simplemenu.install, line 49
Installation and Uninstallation functions.

Code

function simplemenu_update_6003() {
  if (variable_get('simplemenu_devel', 0)) {
    drupal_set_message('The Simplemenu Devel is now defined in a separate module. Enable that module if you want to use the devel menu.', 'warning');
  }
  variable_del('simplemenu_devel');
  return array();
}