aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/convertors/functions_phpbb20.php
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2009-02-09 14:47:21 +0000
committerChris Smith <toonarmy@phpbb.com>2009-02-09 14:47:21 +0000
commit6ebd42129907c04e207ded28f0b94ce2e2566dda (patch)
tree337c7ddde3541e5be5517c66bc50e683a5a66b5b /phpBB/install/convertors/functions_phpbb20.php
parent2966317c3fb1e055c93f5e378b2615e1af41f4cc (diff)
downloadforums-6ebd42129907c04e207ded28f0b94ce2e2566dda.tar
forums-6ebd42129907c04e207ded28f0b94ce2e2566dda.tar.gz
forums-6ebd42129907c04e207ded28f0b94ce2e2566dda.tar.bz2
forums-6ebd42129907c04e207ded28f0b94ce2e2566dda.tar.xz
forums-6ebd42129907c04e207ded28f0b94ce2e2566dda.zip
Fix a problem with r9005
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9325 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/convertors/functions_phpbb20.php')
-rw-r--r--phpBB/install/convertors/functions_phpbb20.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php
index 6452296782..124bbe83ce 100644
--- a/phpBB/install/convertors/functions_phpbb20.php
+++ b/phpBB/install/convertors/functions_phpbb20.php
@@ -461,7 +461,7 @@ function phpbb_get_birthday($birthday = '')
}
// The birthday mod from niels is using this code to transform to day/month/year
- return sprintf('%2d-%2d-%4d', gmdate('n', $birthday * 86400 + 1), gmdate('j', $birthday * 86400 + 1), gmdate('Y', $birthday * 86400 + 1));
+ return sprintf('%2d-%2d-%4d', gmdate('j', $birthday * 86400 + 1), gmdate('n', $birthday * 86400 + 1), gmdate('Y', $birthday * 86400 + 1));
}
}