mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge branch 'ticket/bantu/9176' into develop-olympus
* ticket/bantu/9176: [ticket/9176] Take current board timezone settings into account when setting board date format.
This commit is contained in:
commit
528816dcbd
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue