diff --git a/public/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php b/public/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php index 390d9384..adef05fb 100644 --- a/public/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php +++ b/public/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php @@ -133,7 +133,6 @@ class ResellerController extends ActionController public function xmlAction(Reseller $reseller) { $cacheKey = sprintf('reseller_export_xml_full_%d', $reseller->getUid()); - if (($xml = $this->cache->get($cacheKey)) === false) { $data = $this->resellerDataService->preprocessAll($reseller); $encoders = [new XmlEncoder('products')]; @@ -142,7 +141,7 @@ class ResellerController extends ActionController $xml = $serializer->serialize( $data, 'xml', - [ 'xml_encoding' => 'utf-8', 'xml_format_output' => true ] + [ 'xml_encoding' => 'utf-8', 'xml_format_output' => false ] ); $this->cache->set($cacheKey, $xml, [], 3600); }