Skip to content
This repository has been archived by the owner on Jan 2, 2019. It is now read-only.

Commit

Permalink
Testing pre-commit hook for lint checking
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkBaker committed Mar 7, 2016
1 parent 1b6ed6b commit 5e89b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/PHPExcel/Shared/Date.php
Expand Up @@ -188,7 +188,7 @@ public static function PHPToExcel($dateValue = 0, $adjustToTimezone = false, $ti
} 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);

Expand Down

0 comments on commit 5e89b26

Please sign in to comment.