You are here

function system_update_165 in Drupal 4

Same name and namespace in other branches
  1. 5 modules/system/system.install \system_update_165()

File

database/updates.inc, line 1363

Code

function system_update_165() {
  $cron_last = max(variable_get('drupal_cron_last', 0), variable_get('ping_cron_last', 0));
  variable_set('cron_last', $cron_last);
  variable_del('drupal_cron_last');
  variable_del('ping_cron_last');
  return array();
}