From 2f4897b35f2466889f46ff9e177dfb2306f97ead Mon Sep 17 00:00:00 2001 From: gleemand Date: Mon, 12 Jul 2021 17:36:17 +0300 Subject: [PATCH] Changed dimensions order in ICML --- retailcrm/lib/RetailcrmCatalog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retailcrm/lib/RetailcrmCatalog.php b/retailcrm/lib/RetailcrmCatalog.php index 208fa6e..a07060a 100644 --- a/retailcrm/lib/RetailcrmCatalog.php +++ b/retailcrm/lib/RetailcrmCatalog.php @@ -198,7 +198,7 @@ class RetailcrmCatalog $depth = round($product['depth'], 3); if ($width !== 0.0 && $height !== 0.0) { - $dimensions = implode('/', array($width, $height, $depth)); + $dimensions = implode('/', array($depth, $width, $height)); } else { $dimensions = null; }