You are here

function ad_update_7303 in Advertisement 7.3

Migrates queue config to the new format.

File

./ad.install, line 99
Installation file for the ad module.

Code

function ad_update_7303() {
  if (variable_get('ad_queue_impressions')) {
    $info['impression'] = TRUE;
    variable_set('ad_queue_info', $info);
  }
  variable_del('ad_queue_impressions');
}