From 7c82d91c7656fe3ceadcf2ba9c085cba5f333bb1 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 23 Mar 2001 01:31:49 +0000 Subject: [PATCH] Changed default base date format - no other changes git-svn-id: file:///svn/phpbb/trunk@133 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/upgrade_20.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/phpBB/upgrade_20.php b/phpBB/upgrade_20.php index f0fca0c9f8..6dbd9c99ab 100644 --- a/phpBB/upgrade_20.php +++ b/phpBB/upgrade_20.php @@ -3,10 +3,10 @@ * upgrade_20.php - description * ------------------- * begin : Sat Oct 14 2000 -* copyright : (C) 2000 by James Atkinson -* email : james@totalgeek.org +* copyright : (C) 2001 The phpBB Group +* email : support@phpbb.com * -* $id$ +* $id Exp $ * ****************************************************************************/ @@ -71,9 +71,9 @@ function convert_date($date_in) list($date, $time) = split(" ", $date_in); // UK/European format - list($day, $month, $year) = split("-", $date); +// list($day, $month, $year) = split("-", $date); // Original phpBB format -// list($year, $month, $day) = split("-", $date); + list($year, $month, $day) = split("-", $date); list($hours, $minutes) = split(":", $time); $timestamp = mktime($hours, $minutes, 0, $month, $day, $year);