// Fix little bug

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15031 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-05-03 09:04:51 +00:00
parent 79a6a4ad41
commit e35c56241f
+8 -4
View File
@@ -150,12 +150,16 @@ class OrderControllerCore extends ParentOrderController
Tools::redirect('index.php?controller=order&step=2');
// Check the delivery option is setted
if (!Tools::getValue('delivery_option') && !$this->context->cart->isVirtualCart())
if (!$this->context->cart->isVirtualCart())
{
Tools::redirect('index.php?controller=order&step=2');
foreach (Tools::getValue('delivery_option') as $delivery_option)
if (empty($delivery_option))
if (!Tools::getValue('delivery_option'))
Tools::redirect('index.php?controller=order&step=2');
else
{
foreach (Tools::getValue('delivery_option') as $delivery_option)
if (empty($delivery_option))
Tools::redirect('index.php?controller=order&step=2');
}
}
$this->autoStep();