diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-07-13 00:01:37 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-07-13 00:01:37 +0200 |
commit | 91fd6df4308583c570dd7710d80a142a84c106aa (patch) | |
tree | 363ad0ff29c8ccf0ce52d402426cfca9c5a850a1 /phpBB | |
parent | db352c17f8ce7e0abb06d6c71755ae2d9fd4c58d (diff) | |
download | forums-91fd6df4308583c570dd7710d80a142a84c106aa.tar forums-91fd6df4308583c570dd7710d80a142a84c106aa.tar.gz forums-91fd6df4308583c570dd7710d80a142a84c106aa.tar.bz2 forums-91fd6df4308583c570dd7710d80a142a84c106aa.tar.xz forums-91fd6df4308583c570dd7710d80a142a84c106aa.zip |
[ticket/10243] Call phpbb_gmgetdate() from various places.
PHPBB3-10243
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/index.php | 2 | ||||
-rw-r--r-- | phpBB/memberlist.php | 2 | ||||
-rw-r--r-- | phpBB/viewtopic.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index cc83641acd..3b58646af0 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -83,7 +83,7 @@ $legend = implode(', ', $legend); $birthday_list = ''; if ($config['load_birthdays'] && $config['allow_birthdays']) { - $now = getdate(time() + $user->timezone + $user->dst - date('Z')); + $now = phpbb_gmgetdate(time() + $user->timezone + $user->dst); $sql = 'SELECT u.user_id, u.username, u.user_colour, u.user_birthday FROM ' . USERS_TABLE . ' u LEFT JOIN ' . BANLIST_TABLE . " b ON (u.user_id = b.ban_userid) diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 589877305f..b3800ca0dd 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -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) diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 08e82591de..3f73fe356a 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -995,7 +995,7 @@ $sql = $db->sql_build_query('SELECT', array( $result = $db->sql_query($sql); -$now = getdate(time() + $user->timezone + $user->dst - date('Z')); +$now = phpbb_gmgetdate(time() + $user->timezone + $user->dst); // Posts are stored in the $rowset array while $attach_list, $user_cache // and the global bbcode_bitfield are built |