diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2018-01-24 18:47:40 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2018-01-24 18:47:40 +0100 |
| commit | 532afbf83a509b25c5042f5bb374657417ca3e5d (patch) | |
| tree | 200393a2c3de276964931f1d590ae9a943224133 /phpBB/phpbb | |
| parent | 5c8a667db2e47313e687fd8afe3c4fa7c73abeb9 (diff) | |
| download | forums-532afbf83a509b25c5042f5bb374657417ca3e5d.tar forums-532afbf83a509b25c5042f5bb374657417ca3e5d.tar.gz forums-532afbf83a509b25c5042f5bb374657417ca3e5d.tar.bz2 forums-532afbf83a509b25c5042f5bb374657417ca3e5d.tar.xz forums-532afbf83a509b25c5042f5bb374657417ca3e5d.zip | |
[ticket/15527] Remove "use" and specify full class name for exception
PHPBB3-15527
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/merge_duplicate_bbcodes.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/merge_duplicate_bbcodes.php b/phpBB/phpbb/db/migration/data/v32x/merge_duplicate_bbcodes.php index 6457a84adb..ad50089d4e 100644 --- a/phpBB/phpbb/db/migration/data/v32x/merge_duplicate_bbcodes.php +++ b/phpBB/phpbb/db/migration/data/v32x/merge_duplicate_bbcodes.php @@ -13,8 +13,6 @@ namespace phpbb\db\migration\data\v32x; -use Exception; - class merge_duplicate_bbcodes extends \phpbb\db\migration\container_aware_migration { public function update_data() @@ -61,7 +59,7 @@ class merge_duplicate_bbcodes extends \phpbb\db\migration\container_aware_migrat ] ); } - catch (Exception $e) + catch (\Exception $e) { // Ignore the pair and move on. The BBCodes would have to be fixed manually return; |
