diff --git a/intaro.intarocrm/install/index.php b/intaro.intarocrm/install/index.php index a36d588c..f3456341 100755 --- a/intaro.intarocrm/install/index.php +++ b/intaro.intarocrm/install/index.php @@ -64,6 +64,13 @@ class intaro_intarocrm extends CModule return false; } + if (!date_default_timezone_get()) { + if (!ini_get('date.timezone')) { + $APPLICATION->ThrowException(GetMessage("DATE_TIMEZONE_ERR")); + return false; + } + } + include($this->INSTALL_PATH . '/../classes/general/RestApi.php'); include($this->INSTALL_PATH . '/../classes/general/ICrmOrderActions.php'); include($this->INSTALL_PATH . '/../classes/general/ICMLLoader.php'); diff --git a/intaro.intarocrm/lang/ru/install/index.php b/intaro.intarocrm/lang/ru/install/index.php index 4637485b..60196348 100755 --- a/intaro.intarocrm/lang/ru/install/index.php +++ b/intaro.intarocrm/lang/ru/install/index.php @@ -11,4 +11,5 @@ $MESS ['ERR_IBLOCK'] = 'Отсутствует модуль iblock! Дальне $MESS ['ERR_CATALOG'] = 'Отсутствует модуль catalog! Дальнейшая установка невозможна.'; $MESS ['ERR_CATALOG'] = 'Отсутствует модуль catalog! Дальнейшая установка невозможна.'; $MESS ['INTAROCRM_CURL_ERR'] = 'Для работы модуля интеграции с IntaroCRM требуется PHP-расширение CURL.'; -$MESS ['ERR_ARTICLE_IBLOCK'] = 'Не установлены артикулы'; \ No newline at end of file +$MESS ['ERR_ARTICLE_IBLOCK'] = 'Не установлены артикулы'; +$MESS ['DATE_TIMEZONE_ERR'] = 'Не указана временная зона в настройках php.'; \ No newline at end of file