mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/10243] Call phpbb_gmgetdate() from various places.
PHPBB3-10243
This commit is contained in:
parent
db352c17f8
commit
91fd6df430
3 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@ $legend = implode(', ', $legend);
|
||||||
$birthday_list = '';
|
$birthday_list = '';
|
||||||
if ($config['load_birthdays'] && $config['allow_birthdays'])
|
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
|
$sql = 'SELECT u.user_id, u.username, u.user_colour, u.user_birthday
|
||||||
FROM ' . USERS_TABLE . ' u
|
FROM ' . USERS_TABLE . ' u
|
||||||
LEFT JOIN ' . BANLIST_TABLE . " b ON (u.user_id = b.ban_userid)
|
LEFT JOIN ' . BANLIST_TABLE . " b ON (u.user_id = b.ban_userid)
|
||||||
|
|
|
@ -1667,7 +1667,7 @@ function show_profile($data, $user_notes_enabled = false, $warn_user_enabled = f
|
||||||
|
|
||||||
if ($bday_year)
|
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;
|
$diff = $now['mon'] - $bday_month;
|
||||||
if ($diff == 0)
|
if ($diff == 0)
|
||||||
|
|
|
@ -995,7 +995,7 @@ $sql = $db->sql_build_query('SELECT', array(
|
||||||
|
|
||||||
$result = $db->sql_query($sql);
|
$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
|
// Posts are stored in the $rowset array while $attach_list, $user_cache
|
||||||
// and the global bbcode_bitfield are built
|
// and the global bbcode_bitfield are built
|
||||||
|
|
Loading…
Add table
Reference in a new issue