You are here

function xmlsitemap_update_6118 in XML sitemap 6

Implementation of hook_update_N().

File

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

Code

function xmlsitemap_update_6118() {
  variable_set('xmlsitemap_cron_submit_frequency', variable_get('xmlsitemap_cron_submit', FALSE) ? 1 : -1);
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Updated the module settings successfully.',
  );
  return $ret;
}