- Модуль: intranet
- Путь к файлу: ~/bitrix/modules/intranet/classes/general/ws_contacts.php
- Класс: CIntranetContactsWS
- Вызов: CIntranetContactsWS::__makeTS
function __makeTS($datetime = null)
{
if (null === $datetime)
return time();
if (intval(mb_substr($datetime, 0, 4)) >= 2037)
$datetime = '2037'.mb_substr($datetime, 4);
return MakeTimeStamp(mb_substr($datetime, 0, 10).' '.mb_substr($datetime, 11, -1), 'YYYY-MM-DD HH:MI:SS');
}