You are here

function commons_update_3113 in Drupal Commons 7.3

Delete the AdvancedQueue class variable for sites that did not uninstall AdvancedQueue.

File

./commons.install, line 738
Install, update and uninstall functions for the Commons install profile.

Code

function commons_update_3113() {
  if (variable_get('queue_default_class', '') == 'AdvancedQueue') {
    variable_del('queue_default_class');
  }
  return array();
}