// Bug fix payment module (with previous commit)

This commit is contained in:
François Gaillard
2012-05-24 13:04:14 +00:00
parent 2b9410c426
commit 48ef7f7d3c
+2 -2
View File
@@ -226,8 +226,8 @@ abstract class PaymentModuleCore extends Module
}
else
{
$order->id_shop = $cart->id_shop;
$order->id_shop_group = $cart->id_shop_group;
$order->id_shop = (int)$cart->id_shop;
$order->id_shop_group = (int)$cart->id_shop_group;
}
$customer = new Customer($order->id_customer);