aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/upgrade_20.php4
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);
}