system_update_7033()Move CACHE_AGGRESSIVE to CACHE_NORMAL.
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.');
}
}
?>