From 8aaeeaf26860737c20c139df81d0aa45ee735b37 Mon Sep 17 00:00:00 2001 From: Tetragramat Date: Thu, 31 Mar 2016 19:39:35 +0200 Subject: [PATCH] paymentShippingStep display shippingForm with no error messages --- .../Bundle/CoreBundle/Checkout/Step/PaymentShippingStep.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Sylius/Bundle/CoreBundle/Checkout/Step/PaymentShippingStep.php b/src/Sylius/Bundle/CoreBundle/Checkout/Step/PaymentShippingStep.php index b8035e125f4..4c7e14d5291 100755 --- a/src/Sylius/Bundle/CoreBundle/Checkout/Step/PaymentShippingStep.php +++ b/src/Sylius/Bundle/CoreBundle/Checkout/Step/PaymentShippingStep.php @@ -128,6 +128,9 @@ public function forwardAction(ProcessContextInterface $context) } } + // display form with no error messages + $formShipping = $this->createCheckoutShippingForm($order, $formShippingPre->get('country')->getData()); + return $this->renderStep($context, $order, $formPayment, $formShipping, $formAddressing); }