1
0
mirror of synced 2025-02-16 15:03:14 +03:00

added timezone check before install

This commit is contained in:
Grisha Pomadchin 2013-09-02 16:30:50 +04:00
parent 6c340f17b2
commit d02d4a9f1a

View File

@ -65,10 +65,12 @@ 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');