1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/10243] Call phpbb_gmgetdate() from various places.

PHPBB3-10243
This commit is contained in:
Andreas Fischer
2011-07-13 00:01:37 +02:00
parent db352c17f8
commit 91fd6df430
3 changed files with 3 additions and 3 deletions

View File

@@ -1667,7 +1667,7 @@ function show_profile($data, $user_notes_enabled = false, $warn_user_enabled = f
if ($bday_year)
{
$now = getdate(time() + $user->timezone + $user->dst - date('Z'));
$now = phpbb_gmgetdate(time() + $user->timezone + $user->dst);
$diff = $now['mon'] - $bday_month;
if ($diff == 0)