diff --git a/CHANGELOG.md b/CHANGELOG.md index c2a4b5de..569690fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2025-01-14 v6.6.3 +- Исправлены ошибки при обновлении модуля + ## 2025-01-14 v6.6.2 - Исправлена выгрузка архива заказов при установке модуля diff --git a/intaro.retailcrm/description.ru b/intaro.retailcrm/description.ru index 35b66e67..57c6b407 100644 --- a/intaro.retailcrm/description.ru +++ b/intaro.retailcrm/description.ru @@ -1 +1 @@ -- Исправлена выгрузка архива заказов при установке модуля +- Исправлены ошибки при обновлении модуля diff --git a/intaro.retailcrm/install/index.php b/intaro.retailcrm/install/index.php index 94fbef15..2e44add0 100644 --- a/intaro.retailcrm/install/index.php +++ b/intaro.retailcrm/install/index.php @@ -57,7 +57,7 @@ class intaro_retailcrm extends CModule $path = substr($path, 0, strlen($path) - strlen('/index.php')); $this->INSTALL_PATH = $path; - require_once($path . '/version.php'); + include($path . '/version.php'); $this->MODULE_VERSION = $arModuleVersion['VERSION']; $this->MODULE_VERSION_DATE = $arModuleVersion['VERSION_DATE']; diff --git a/intaro.retailcrm/install/version.php b/intaro.retailcrm/install/version.php index 0846376a..af685007 100644 --- a/intaro.retailcrm/install/version.php +++ b/intaro.retailcrm/install/version.php @@ -1,6 +1,6 @@ '6.6.2', - 'VERSION_DATE' => '2025-01-14 13:00:00' + 'VERSION' => '6.6.3', + 'VERSION_DATE' => '2025-01-14 18:00:00' ]; diff --git a/intaro.retailcrm/lib/component/constants.php b/intaro.retailcrm/lib/component/constants.php index 311fe169..bb0a99b4 100644 --- a/intaro.retailcrm/lib/component/constants.php +++ b/intaro.retailcrm/lib/component/constants.php @@ -18,7 +18,7 @@ namespace Intaro\RetailCrm\Component; */ class Constants { - public const MODULE_VERSION = '6.6.2'; + public const MODULE_VERSION = '6.6.3'; public const CRM_PURCHASE_PRICE_NULL = 'purchasePrice_null'; public const BITRIX_USER_ID_PREFIX = 'bitrixUserId-'; public const CRM_USERS_MAP = 'crm_users_map';