// Bug fix payment module (with previous commit)
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15661 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user