diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-04 01:22:38 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-04 01:22:38 +0000 |
| commit | 6a74fcad44e0d5063af04beef8533e99fae739cc (patch) | |
| tree | 61825dd710bd606a3aba6923fea8de421b157ec6 | |
| parent | ab57859a182a019b065a55e9905a9eaa10452591 (diff) | |
| download | forums-6a74fcad44e0d5063af04beef8533e99fae739cc.tar forums-6a74fcad44e0d5063af04beef8533e99fae739cc.tar.gz forums-6a74fcad44e0d5063af04beef8533e99fae739cc.tar.bz2 forums-6a74fcad44e0d5063af04beef8533e99fae739cc.tar.xz forums-6a74fcad44e0d5063af04beef8533e99fae739cc.zip | |
Date conversion now done to GMT based epoch
git-svn-id: file:///svn/phpbb/trunk@139 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/upgrade_20.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/upgrade_20.php b/phpBB/upgrade_20.php index 6dbd9c99ab..7655d37402 100644 --- a/phpBB/upgrade_20.php +++ b/phpBB/upgrade_20.php @@ -6,7 +6,7 @@ * copyright : (C) 2001 The phpBB Group * email : support@phpbb.com * -* $id Exp $ +* $id upgrade_20.php,v 1.9 2001/03/23 01:32:41 psotfx Exp $ * ****************************************************************************/ @@ -75,7 +75,7 @@ function convert_date($date_in) // Original phpBB format list($year, $month, $day) = split("-", $date); list($hours, $minutes) = split(":", $time); - $timestamp = mktime($hours, $minutes, 0, $month, $day, $year); + $timestamp = gmmktime($hours, $minutes, 0, $month, $day, $year); return($timestamp); } |
