You are here

function system_update_165 in Drupal 5

Same name and namespace in other branches
  1. 4 database/updates.inc \system_update_165()

File

modules/system/system.install, line 2473

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();
}