system_update_7033

Versions
mediamosa-21
system_update_7033()

Move CACHE_AGGRESSIVE to CACHE_NORMAL.

Related topics

Code

modules/system/system.install, line 2087

<?php
function system_update_7033() {
  if (variable_get('cache') == 2) {
    variable_set('cache', CACHE_NORMAL);
    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.');
  }
}
?>