You are here

function xmlsitemap_update_6141 in XML sitemap 6

Implementation of hook_update_N().

File

./xmlsitemap.install, line 526
Installation file for XML sitemap.

Code

function xmlsitemap_update_6141() {
  $ret = array();
  if (!variable_get('menu_rebuild_needed', FALSE)) {
    variable_set('menu_rebuild_needed', TRUE);
    $ret[] = array(
      'success' => TRUE,
      'query' => 'Re-build menu callbacks successfully.',
    );
  }
  return $ret;
}