From 1afc913c386bba8e6072c278b0eb4fd9818ab310 Mon Sep 17 00:00:00 2001 From: xue <> Date: Tue, 25 Apr 2006 01:27:04 +0000 Subject: Undo previous checkin (which goes int 3.0 branch and will be merged back). --- framework/Util/TSimpleDateFormatter.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'framework/Util/TSimpleDateFormatter.php') diff --git a/framework/Util/TSimpleDateFormatter.php b/framework/Util/TSimpleDateFormatter.php index 2a3da63a..052e0074 100644 --- a/framework/Util/TSimpleDateFormatter.php +++ b/framework/Util/TSimpleDateFormatter.php @@ -190,20 +190,18 @@ class TSimpleDateFormatter /** * Parse the string according to the pattern. - * @param string|int date string or integer to parse + * @param string date string to parse * @return int date time stamp * @throws TInvalidDataValueException if date string is malformed. */ public function parse($value,$defaultToCurrentTime=true) { - if(is_int($value)) - return $value; - else if(!is_string($value)) + if(!is_string($value)) throw new TInvalidDataValueException('date_to_parse_must_be_string', $value); if(empty($this->pattern)) return time(); - $date = time(); + $date = $this->getDate(time()); if($this->length(trim($value)) < 1) return $defaultToCurrentTime ? $date : null; -- cgit v1.2.3