Index: uc_2checkout.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ubercart/payment/uc_2checkout/uc_2checkout.module,v
retrieving revision 1.6.2.6
diff -u -r1.6.2.6 uc_2checkout.module
--- uc_2checkout.module	18 Apr 2009 07:29:19 -0000	1.6.2.6
+++ uc_2checkout.module	8 May 2009 11:14:18 -0000
@@ -243,3 +243,14 @@
       return 'https://www.2checkout.com/2co/buyer/purchase';
   }
 }
+
+/**
+* Implementation of hook_ucga_display().
+*/
+function uc_2checkout_ucga_display() {
+  // Tell UC Google Analytics to display the e-commerce JS on the custom
+  // order completion page for this module.
+  if (arg(0) == 'cart' && arg(1) == '2checkout' && arg(2) == 'finalize') {
+    return TRUE;
+  }
+}

