summaryrefslogtreecommitdiff
path: root/framework/Util/TSimpleDateFormatter.php
diff options
context:
space:
mode:
authorctrlaltca <>2013-01-06 19:12:45 +0000
committerctrlaltca <>2013-01-06 19:12:45 +0000
commit11d9e3f39458c4870ca722ba1d3db0d5bba754dc (patch)
treefeaa32bfba9a6480c3b7d5b66b520ec27be9b2cc /framework/Util/TSimpleDateFormatter.php
parent0335d5868ca022a455a36fef89bff4952db67c17 (diff)
fix #44
Diffstat (limited to 'framework/Util/TSimpleDateFormatter.php')
-rw-r--r--framework/Util/TSimpleDateFormatter.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/framework/Util/TSimpleDateFormatter.php b/framework/Util/TSimpleDateFormatter.php
index 8b17048a..a1a1842a 100644
--- a/framework/Util/TSimpleDateFormatter.php
+++ b/framework/Util/TSimpleDateFormatter.php
@@ -173,15 +173,8 @@ class TSimpleDateFormatter
*/
private function getDate($value)
{
- if(!is_string($value))
- {
- $s = Prado::createComponent('System.Util.TDateTimeStamp');
- return $s->getDate($value);
- }
- $date = @strtotime($value);
- if($date < 0)
- throw new TInvalidDataValueException('invalid_date', $value);
- return @getdate($date);
+ $s = Prado::createComponent('System.Util.TDateTimeStamp');
+ return $s->parseDate($value);
}
/**