From c1c298b4eb729cb67e597b4c69d6be34dccad066 Mon Sep 17 00:00:00 2001 From: Grisha Pomadchin Date: Tue, 3 Sep 2013 13:22:05 +0400 Subject: [PATCH] timezone fix; v0.3.9.1 --- intaro.intarocrm/install/index.php | 7 +++++++ intaro.intarocrm/lang/ru/install/index.php | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) 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