You are here

function nodewords_update_6304 in Nodewords: D6 Meta Tags 6.3

Implements hook_update_N().

File

./nodewords.install, line 259
Install, update and uninstall functions for the Nodewords module.

Code

function nodewords_update_6304() {
  $ret = array();
  menu_rebuild();
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Rebuilt the module menu',
  );
  return $ret;
}