From 6a74fcad44e0d5063af04beef8533e99fae739cc Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 4 Apr 2001 01:22:38 +0000 Subject: [PATCH] Date conversion now done to GMT based epoch git-svn-id: file:///svn/phpbb/trunk@139 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/upgrade_20.php | 4 ++-- 1 file 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); }