From 64985faedc5a18fbc745cfdad9c452ff94172931 Mon Sep 17 00:00:00 2001 From: touffies Date: Thu, 24 Oct 2013 19:49:52 +0200 Subject: [PATCH] small fix --- core/lib/Thelia/Controller/Front/OrderController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Thelia/Controller/Front/OrderController.php b/core/lib/Thelia/Controller/Front/OrderController.php index d225210ae..bb0604bd1 100755 --- a/core/lib/Thelia/Controller/Front/OrderController.php +++ b/core/lib/Thelia/Controller/Front/OrderController.php @@ -205,7 +205,7 @@ class OrderController extends BaseFrontController { /* check if the placed order matched the customer */ $placedOrder = OrderQuery::create()->findPk( - $this->getRequest()->attributes->get('order_id'); + $this->getRequest()->attributes->get('order_id') ); if (null === $placedOrder) {