diff options
author | wei <> | 2006-04-14 05:27:46 +0000 |
---|---|---|
committer | wei <> | 2006-04-14 05:27:46 +0000 |
commit | ce7d7a6b2a860267da3ca6aadacdb225ce1c0b8a (patch) | |
tree | 13a58b46d5bd5dc626a60c9909d6dc0e6d1fc875 /framework/Util | |
parent | 584d51a2c22192dc79439fd7312776b36298c5f7 (diff) |
Fixed #97
Diffstat (limited to 'framework/Util')
-rw-r--r-- | framework/Util/TSimpleDateFormatter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Util/TSimpleDateFormatter.php b/framework/Util/TSimpleDateFormatter.php index ce92a272..7be49bc9 100644 --- a/framework/Util/TSimpleDateFormatter.php +++ b/framework/Util/TSimpleDateFormatter.php @@ -292,7 +292,7 @@ class TSimpleDateFormatter if(!$defaultToCurrentTime && (is_null($month) || is_null($day) || is_null($year)))
return null;
else
- return $this->getDate(@mktime(0, 0, 0, $month, $day, $year));
+ return @mktime(0, 0, 0, $month, $day, $year);
}
/**
|