? .DS_Store
? payment/.DS_Store
? shipping/.DS_Store
Index: payment/uc_payment/uc_payment.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ubercart/payment/uc_payment/uc_payment.module,v
retrieving revision 1.5.2.14
diff -u -p -r1.5.2.14 uc_payment.module
--- payment/uc_payment/uc_payment.module	27 Jan 2010 22:23:31 -0000	1.5.2.14
+++ payment/uc_payment/uc_payment.module	27 Sep 2010 17:52:08 -0000
@@ -231,7 +231,7 @@ function uc_payment_form_alter(&$form, $
 /**
  * Implementation of hook_order().
  */
-function uc_payment_order($op, &$arg1) {
+function uc_payment_order($op, $arg1) {
   switch ($op) {
     case 'submit':
       $func = _payment_method_data($arg1->payment_method, 'callback');
Index: shipping/uc_quote/uc_quote.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ubercart/shipping/uc_quote/uc_quote.module,v
retrieving revision 1.5.2.29
diff -u -p -r1.5.2.29 uc_quote.module
--- shipping/uc_quote/uc_quote.module	23 Feb 2010 18:36:53 -0000	1.5.2.29
+++ shipping/uc_quote/uc_quote.module	27 Sep 2010 17:52:09 -0000
@@ -517,7 +517,7 @@ function uc_quote_update_cart_item() {
 /**
  * Implementation of hook_order().
  */
-function uc_quote_order($op, &$arg1, $arg2) {
+function uc_quote_order($op, $arg1, $arg2) {
   switch ($op) {
     case 'submit':
       unset($_SESSION['quote']);
Index: uc_googleanalytics/uc_googleanalytics.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ubercart/uc_googleanalytics/uc_googleanalytics.module,v
retrieving revision 1.6.2.9
diff -u -p -r1.6.2.9 uc_googleanalytics.module
--- uc_googleanalytics/uc_googleanalytics.module	12 Jul 2010 01:31:31 -0000	1.6.2.9
+++ uc_googleanalytics/uc_googleanalytics.module	27 Sep 2010 17:52:09 -0000
@@ -46,7 +46,7 @@ function uc_googleanalytics_footer($main
 /**
  * Implementation of hook_order().
  */
-function uc_googleanalytics_order($op, &$arg1, $arg2) {
+function uc_googleanalytics_order($op, $arg1, $arg2) {
   // If a new order is created during the checkout process...
   if ($op == 'new' && arg(0) == 'cart') {
     // Store the order ID for later use.
