mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-21 00:02:18 +02:00
[ticket/9176] Take current board timezone settings into account when setting board date format.
PHPBB3-9176
This commit is contained in:
parent
925a135613
commit
3e9d15a25d
@ -888,8 +888,8 @@ class acp_board
|
||||
$old_tz = $user->timezone;
|
||||
$old_dst = $user->dst;
|
||||
|
||||
$user->timezone = $config['board_timezone'];
|
||||
$user->dst = $config['board_dst'];
|
||||
$user->timezone = $config['board_timezone'] * 3600;
|
||||
$user->dst = $config['board_dst'] * 3600;
|
||||
|
||||
$dateformat_options = '';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user