You are here

function nodewords_admin_update_6300 in Nodewords: D6 Meta Tags 6.3

Implements hook_update_N().

File

nodewords_admin/nodewords_admin.install, line 11
Install, update and uninstall functions for the Administration interface module.

Code

function nodewords_admin_update_6300() {
  $ret = array();
  if (!variable_get('menu_rebuild_needed', FALSE)) {
    variable_set('menu_rebuild_needed', TRUE);
  }
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Updated the module menus',
  );
  return $ret;
}