Closed (won't fix)
Project:
UC Google Checkout
Version:
5.x-1.5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
20 Jan 2009 at 22:13 UTC
Updated:
22 Jan 2009 at 14:42 UTC
Jump to comment: Most recent file
Comments
Comment #1
frank.sposaro commentedHello,
I found a patch for this issue if you would like to use it.
Insert
if (strpos($redirect, "shoppingcartshoppingcart") !== false)
{
$redirect = str_replace("shoppingcartshoppingcart","shoppingcart&shoppingcart",$redirect);
}
at line 703 in the module file.
Thanks.
Comment #2
Island Usurper commentedSince this is really a problem with Google's servers, and I think it's one that they will fix before too long, I don't want to change my code to take care of it. However, people do need to be able to use it in the meantime, so I've made a proper patch for them to use. It's a little different, since the if() statement isn't really needed in this case.