diff options
Diffstat (limited to 'framework/Util/TSimpleDateFormatter.php')
-rw-r--r-- | framework/Util/TSimpleDateFormatter.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/framework/Util/TSimpleDateFormatter.php b/framework/Util/TSimpleDateFormatter.php index a1a1842a..c2fe99b0 100644 --- a/framework/Util/TSimpleDateFormatter.php +++ b/framework/Util/TSimpleDateFormatter.php @@ -174,7 +174,10 @@ class TSimpleDateFormatter private function getDate($value) { $s = Prado::createComponent('System.Util.TDateTimeStamp'); - return $s->parseDate($value); + if(is_numeric($value)) + return $s->getDate($value); + else + return $s->parseDate($value); } /** |