aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-08-07 16:24:48 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-08-07 16:24:48 +0200
commit9925733350efe98007b08f88a36e9138908129d9 (patch)
tree54fdc61731dd6b2e319c7b5b7c8c08271f0bb3e8 /phpBB/includes/functions.php
parent9a0451889cf91c7e6563d8e12108630ee5d1f130 (diff)
parenta2b6f4e1665495f1dbabfa284f097a8cda122dcb (diff)
downloadforums-9925733350efe98007b08f88a36e9138908129d9.tar
forums-9925733350efe98007b08f88a36e9138908129d9.tar.gz
forums-9925733350efe98007b08f88a36e9138908129d9.tar.bz2
forums-9925733350efe98007b08f88a36e9138908129d9.tar.xz
forums-9925733350efe98007b08f88a36e9138908129d9.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12826] Add optional root namespace indicator for consistency. [ticket/12826] Add mandatory root namespace indicator to exception catching.
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index d7b1b56532..4318b20b97 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -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)
{
}
}