aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_profile_fields.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-03-31 02:50:19 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-03-31 18:14:07 +0200
commit6deb7b3671c29ab7ce1db6e11b5c6be0950d265f (patch)
tree01f69230e6d0c02827268975dc64af781f06b809 /phpBB/includes/functions_profile_fields.php
parent0ae491c5fa9228304e17431ea7aa8ba9303cc193 (diff)
downloadforums-6deb7b3671c29ab7ce1db6e11b5c6be0950d265f.tar
forums-6deb7b3671c29ab7ce1db6e11b5c6be0950d265f.tar.gz
forums-6deb7b3671c29ab7ce1db6e11b5c6be0950d265f.tar.bz2
forums-6deb7b3671c29ab7ce1db6e11b5c6be0950d265f.tar.xz
forums-6deb7b3671c29ab7ce1db6e11b5c6be0950d265f.zip
[feature/class-prefix] Rename user and session to phpbb_*
PHPBB-10609
Diffstat (limited to 'phpBB/includes/functions_profile_fields.php')
-rw-r--r--phpBB/includes/functions_profile_fields.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php
index 34d973b3a6..3399334f94 100644
--- a/phpBB/includes/functions_profile_fields.php
+++ b/phpBB/includes/functions_profile_fields.php
@@ -555,7 +555,7 @@ class custom_profile
{
global $user;
// Date should display as the same date for every user regardless of timezone, so remove offset
- // to compensate for the offset added by user::format_date()
+ // to compensate for the offset added by phpbb_user::format_date()
return $user->format_date(gmmktime(0, 0, 0, $month, $day, $year) - ($user->timezone + $user->dst), $user->lang['DATE_FORMAT'], true);
}