function system_update_8034

Move cron last run time and cron key from variable to state.

Related topics

File

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

Code

function system_update_8034() {
  update_variables_to_state(array(
    'cron_last' => 'system.cron_last',
    'cron_key' => 'system.cron_key',
  ));
}