diff --git a/intaro.intarocrm/classes/general/ICMLLoader.php b/intaro.intarocrm/classes/general/ICMLLoader.php
index 29cf1014..e95985e2 100644
--- a/intaro.intarocrm/classes/general/ICMLLoader.php
+++ b/intaro.intarocrm/classes/general/ICMLLoader.php
@@ -317,7 +317,7 @@ class ICMLLoader {
while($file = $dbFiles->GetNext()) {
// Link picture to product
- $products[$pictures[$file['ID']]]['PICTURE'] = "http://" .
+ $products[$pictures[$file['ID']]]['PICTURE'] = ($_SERVER["HTTPS"] == 'on' ? "https://" : "http://") .
$_SERVER['SERVER_NAME'] .
'/upload/' . $file['SUBDIR'] .
'/' . $file['FILE_NAME'] ;
@@ -513,7 +513,7 @@ class ICMLLoader {
}
$offer .= "" . $this->PrepareValue($arOffer["PICTURE"]) . "\n";
- $offer .= "http://" . $_SERVER['SERVER_NAME'] . $this->PrepareValue($arOffer['DETAIL_PAGE_URL']) . "\n";
+ $offer .= "" . ($_SERVER["HTTPS"] == 'on' ? "https://" : "http://") . $_SERVER['SERVER_NAME'] . $this->PrepareValue($arOffer['DETAIL_PAGE_URL']) . "\n";
$offer .= "" . $this->PrepareValue($arOffer['PRICE']) . "\n";
foreach ($categories as $category)
@@ -545,4 +545,4 @@ class ICMLLoader {
return $offer;
}
-}
\ No newline at end of file
+}