You are here

function nodewords_update_6173 in Nodewords: D6 Meta Tags 6

Implements hook_update_N().

File

./nodewords.install, line 1511
Installation file for nodewords.module.

Code

function nodewords_update_6173() {
  $ret = array();
  if (!variable_get('menu_rebuild_needed', FALSE)) {
    variable_set('menu_rebuild_needed', TRUE);
    $ret[] = array(
      'success' => TRUE,
      'query' => 'Updated the menu callback definitions',
    );
  }
  return $ret;
}