You are here

function xmlsitemap_update_6136 in XML sitemap 6

Implementation of hook_update_N().

File

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

Code

function xmlsitemap_update_6136() {
  $ret[] = update_sql("DELETE FROM {variable} WHERE name = 'xmlsitemap_update_sitemap_request'");
  variable_set('xmlsitemap_chunk_size', 1000);
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Updated the XML sitemap chunk size successfully.',
  );
  return $ret;
}