From 6c340f17b2cec2053aef6327904c3b82a28d9525 Mon Sep 17 00:00:00 2001 From: Grisha Pomadchin Date: Mon, 2 Sep 2013 16:24:30 +0400 Subject: [PATCH] added timezone check before install --- intaro.intarocrm/install/index.php | 5 +++++ intaro.intarocrm/lang/ru/install/index.php | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/intaro.intarocrm/install/index.php b/intaro.intarocrm/install/index.php index 831952a4..9a4288ca 100755 --- a/intaro.intarocrm/install/index.php +++ b/intaro.intarocrm/install/index.php @@ -64,6 +64,11 @@ class intaro_intarocrm extends CModule $APPLICATION->ThrowException( GetMessage("INTAROCRM_CURL_ERR") ); return false; } + + 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'); 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