You are here

function elysia_cron_update_7205 in Elysia Cron 7.2

Rename context variable to channel.

File

./elysia_cron.install, line 203
Install, update and uninstall functions for the elysia_cron module.

Code

function elysia_cron_update_7205() {
  if ($last = variable_get('elysia_cron_last_context')) {
    variable_set('elysia_cron_last_channel', $last);
  }
  variable_del('elysia_cron_last_context');
}