diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-03-23 01:31:49 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-03-23 01:31:49 +0000 |
commit | 7c82d91c7656fe3ceadcf2ba9c085cba5f333bb1 (patch) | |
tree | 80615da85cb508ff4885c01dcb03c4f193d9fe38 | |
parent | 2eb4b3955bc0a30e93e48265ddae59eb2fe50471 (diff) | |
download | forums-7c82d91c7656fe3ceadcf2ba9c085cba5f333bb1.tar forums-7c82d91c7656fe3ceadcf2ba9c085cba5f333bb1.tar.gz forums-7c82d91c7656fe3ceadcf2ba9c085cba5f333bb1.tar.bz2 forums-7c82d91c7656fe3ceadcf2ba9c085cba5f333bb1.tar.xz forums-7c82d91c7656fe3ceadcf2ba9c085cba5f333bb1.zip |
Changed default base date format - no other changes
git-svn-id: file:///svn/phpbb/trunk@133 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/upgrade_20.php | 10 |
1 files 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); |