You are here

function vkxp_update_7212 in VK CrossPoster 7.2

Changes name of variable that stores owner ID.

File

./vkxp.install, line 82
vkxp.install Requirements and uninstall functions for the vkxp module.

Code

function vkxp_update_7212() {
  $owner_id = variable_get('vkxp_group_id');
  if (!empty($owner_id)) {
    variable_set('vkxp_owner_id', $owner_id);
  }
  variable_del('vkxp_group_id');
}