Uploaded image for project: 'phpBB'
  1. phpBB
  2. PHPBB-9176

When setting the board's date format the board's timezone settings aren't taken into account

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Trivial Trivial
    • 3.0.8-RC1
    • 3.0.7-PL1
    • ACP
    • None

      The "Date format" selection entry in the "Board Settings" is supposed to display its options according to the board's time zone. It does not however because there is a small coding oversight:

      OPEN includes/acp/acp_board.php

      FIND

      		$user->timezone = $config['board_timezone'];
      		$user->dst = $config['board_dst'];

      REPLACE WITH

      		$user->timezone = $config['board_timezone'] * 3600;
      		$user->dst = $config['board_dst'] * 3600;

            bantu Andreas Fischer [X] (Inactive)
            MartectX MartectX [X] (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: