You are here

function uc_store_update_6003 in Ubercart 6.2

File

uc_store/uc_store.install, line 231
Install, update, and uninstall functions for the uc_store module.

Code

function uc_store_update_6003() {
  $ret = array();

  // Copy value of uc_notify_store_help_page into uc_store_help_page
  variable_set('uc_store_help_page', variable_get('uc_notify_store_help_page', ''));

  // Remove old variable uc_notify_store_help_page
  variable_del('uc_notify_store_help_page');
  $ret[] = array(
    'success' => TRUE,
    'query' => t("'uc_notify_store_help_page' renamed to 'uc_store_help_page' in variable table"),
  );
  return $ret;
}