diff --git profiles/annerprofile/modules/contrib-patch/commerce_google_analytics/commerce_google_analytics.module profiles/annerprofile/modules/contrib-patch/commerce_google_analytics/commerce_google_analytics.module
index b81ee2a..daa75a0 100644
--- profiles/annerprofile/modules/contrib-patch/commerce_google_analytics/commerce_google_analytics.module
+++ profiles/annerprofile/modules/contrib-patch/commerce_google_analytics/commerce_google_analytics.module
@@ -181,7 +181,11 @@ function commerce_google_analytics_ecommerce_js($order) {
     
 
     // Allow modules to alter the item arguments.
-    drupal_alter('commerce_google_analytics_item', $item, $line_item, $transaction, $order);
+    $context = array(
+      'transaction' => $transaction,
+      'order' => $order,
+    );
+    drupal_alter('commerce_google_analytics_item', $item, $line_item, $context);
 
     // Put the arguments into an array that is safe to implode directly.
     $args = array(
