function system_update_7033

Move CACHE_AGGRESSIVE to CACHE_NORMAL.

Related topics

File

drupal/modules/system/system.install, line 2245
Install, update and uninstall functions for the system module.

Code

function system_update_7033() {
  if (variable_get('cache') == 2) {
    variable_set('cache', 1);
    return t('Aggressive caching was disabled and replaced with normal caching. Read the page caching section in default.settings.php for more information on how to enable similar functionality.');
  }
}