1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 08:47:45 +02:00

Merge pull request #2812 from bantu/ticket/12826

[ticket/12826] Add root namespace indicator to exception catching.

* bantu/ticket/12826:
  [ticket/12826] Add optional root namespace indicator for consistency.
  [ticket/12826] Add mandatory root namespace indicator to exception catching.
This commit is contained in:
Joas Schilling
2014-08-07 16:24:41 +02:00
3 changed files with 4 additions and 4 deletions

View File

@@ -925,7 +925,7 @@ class acp_board
{
$user->timezone = new DateTimeZone($config['board_timezone']);
}
catch (Exception $e)
catch (\Exception $e)
{
// If the board timezone is invalid, we just use the users timezone.
}

View File

@@ -1031,7 +1031,7 @@ function phpbb_get_timezone_identifiers($selected_timezone)
$validate_timezone = new DateTimeZone($selected_timezone);
$timezones[] = $selected_timezone;
}
catch (Exception $e)
catch (\Exception $e)
{
}
}