diff --git a/Classes/Controller/Cart/CartController.php b/Classes/Controller/Cart/CartController.php index 68281c0d..7122e54d 100755 --- a/Classes/Controller/Cart/CartController.php +++ b/Classes/Controller/Cart/CartController.php @@ -72,6 +72,10 @@ public function showAction( $beforeShowCartEvent = new BeforeShowCartEvent($this->cart, $orderItem, $billingAddress, $shippingAddress); $this->eventDispatcher->dispatch($beforeShowCartEvent); + $orderItem = $beforeShowCartEvent->getOrderItem(); + $billingAddress = $beforeShowCartEvent->getBillingAddress(); + $shippingAddress = $beforeShowCartEvent->getShippingAddress(); + $this->parseServicesAndAssignToView(); $this->view->assignMultiple( diff --git a/Documentation/guides.xml b/Documentation/guides.xml index 8d7182e9..6771e35d 100644 --- a/Documentation/guides.xml +++ b/Documentation/guides.xml @@ -11,7 +11,7 @@ interlink-shortcode="extcode/cart" /> diff --git a/ext_emconf.php b/ext_emconf.php index a6f4ad57..a0268e3b 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'title' => 'Cart', 'description' => 'Shopping Cart(s) for TYPO3', 'category' => 'plugin', - 'version' => '11.4.0', + 'version' => '11.4.1', 'state' => 'stable', 'author' => 'Daniel Gohlke', 'author_email' => 'ext@extco.de',