You are here

function site_map_update_6001 in Site map 6.2

Change block caching mode.

File

./site_map.install, line 30
The install and update code for the site_map module.

Code

function site_map_update_6001() {
  $ret = array();
  $ret[] = update_sql("UPDATE {blocks} set cache = " . BLOCK_NO_CACHE . " WHERE module = 'site_map'");
  return $ret;
}