Fix missing ; in last commit

This commit is contained in:
MarkBaker 2016-03-07 07:58:41 +00:00
parent 0c3a5c2e40
commit ee73d559b9
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ class Date
} 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));
} elseif (is_string($dateValue)) {
$retValue = self::stringToExcel($dateValue)
$retValue = self::stringToExcel($dateValue);
}
date_default_timezone_set($saveTimeZone);