You are here

function site_map_update_7001 in Site map 7

Change block caching mode.

File

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

Code

function site_map_update_7001() {
  db_update('block')
    ->fields(array(
    'cache' => DRUPAL_NO_CACHE,
  ))
    ->condition('module', 'site_map')
    ->execute();
}