You are here

function uc_store_update_6004 in Ubercart 6.2

Remove broken statistics reporting.

File

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

Code

function uc_store_update_6004() {
  $ret = array();
  variable_del('uc_store_last_report');
  variable_del('uc_store_report');
  variable_del('uc_store_site_id');
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Removed broken statistics reporting.',
  );
  return $ret;
}