mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2024-11-22 13:26:07 +03:00
Fix missing ; in last commit
This commit is contained in:
parent
802a94fc5d
commit
bf2b74b57e
@ -188,7 +188,8 @@ class PHPExcel_Shared_Date
|
|||||||
} elseif (is_numeric($dateValue)) {
|
} elseif (is_numeric($dateValue)) {
|
||||||
$retValue = self::FormattedPHPToExcel(date('Y', $dateValue), date('m', $dateValue), date('d', $dateValue), date('H', $dateValue), date('i', $dateValue), date('s', $dateValue));
|
$retValue = self::FormattedPHPToExcel(date('Y', $dateValue), date('m', $dateValue), date('d', $dateValue), date('H', $dateValue), date('i', $dateValue), date('s', $dateValue));
|
||||||
} elseif (is_string($dateValue)) {
|
} elseif (is_string($dateValue)) {
|
||||||
$retValue = self::stringToExcel($dateValue)
|
$retValue = self::stringToExcel($dateValue);
|
||||||
|
}
|
||||||
date_default_timezone_set($saveTimeZone);
|
date_default_timezone_set($saveTimeZone);
|
||||||
|
|
||||||
return $retValue;
|
return $retValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user