You are here

function googleanalytics_update_6303 in Google Analytics 6.3

Same name and namespace in other branches
  1. 6.4 googleanalytics.install \googleanalytics_update_6303()

Delete obsolete trackOutboundAsPageview variable.

File

./googleanalytics.install, line 396
Installation file for Google Analytics module.

Code

function googleanalytics_update_6303() {
  $ret = array();
  variable_del('googleanalytics_trackoutboundaspageview');
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Deleted obsolete trackOutboundAsPageview variable.',
  );
  return $ret;
}