I am getting the following warnings how do i resolve these

Project:Ubercart Price Quotes
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active
Description
Project: 
Ubercart

warning: Parameter 2 to uc_payment_order() expected to be a reference, value given in /home/public_html/shopzone/public/includes/module.inc on line 462.
warning: Parameter 2 to uc_quote_order() expected to be a reference, value given in /home/public_html/shopzone/public/includes/module.inc on line 462.

glennnz's picture
Offline
Joined: 01/20/2009
Juice: 451
#1

Bump, me too.

I'm getting these when I review an order.

Glenn

atifplus's picture
Offline
Joined: 08/06/2010
Juice: 8
#2

I resolved those using the patch for the ubercart module .

Basically you have to modify few of the lines in the module's files.

http://drupal.org/node/574066

let me know if you need any help

Smiling

web_designer's picture
Offline
Joined: 04/06/2011
Juice: 12
#3

Hi,

Can you please say me what can i do?

Here is lines where problem happens:

function module_invoke() {
$args = func_get_args();
$module = $args[0];
$hook = $args[1];
unset($args[0], $args[1]);
$function = $module .'_'. $hook;
else{
return call_user_func_array($function, $args);
}
}
}

I'm not experienced.

Thank you for all.