aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_extensions.php
diff options
context:
space:
mode:
authorjaviexin <javiexin@gmail.com>2017-04-21 21:28:29 +0200
committerjaviexin <javiexin@gmail.com>2017-04-21 21:28:29 +0200
commit6a61e73e00bdd52e6e96fca07e024059ceadc579 (patch)
tree14e1b94b9ae1354c5b61777f882513f69b203530 /phpBB/includes/acp/acp_extensions.php
parentad5fcd535630b9a93333bb6e16bc84bff8f103ae (diff)
downloadforums-6a61e73e00bdd52e6e96fca07e024059ceadc579.tar
forums-6a61e73e00bdd52e6e96fca07e024059ceadc579.tar.gz
forums-6a61e73e00bdd52e6e96fca07e024059ceadc579.tar.bz2
forums-6a61e73e00bdd52e6e96fca07e024059ceadc579.tar.xz
forums-6a61e73e00bdd52e6e96fca07e024059ceadc579.zip
[ticket/15011] Use exception interface for 3.2
Update the mentioned ticket to 3.2 by using exception_inteface instead of the actual exception class. Also, use adm_back_link consistently. PHPBB3-15011
Diffstat (limited to 'phpBB/includes/acp/acp_extensions.php')
-rw-r--r--phpBB/includes/acp/acp_extensions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_extensions.php b/phpBB/includes/acp/acp_extensions.php
index 5c589222c6..c08674841c 100644
--- a/phpBB/includes/acp/acp_extensions.php
+++ b/phpBB/includes/acp/acp_extensions.php
@@ -106,7 +106,7 @@ class acp_extensions
catch (exception_interface $e)
{
$message = call_user_func_array(array($this->user, 'lang'), array_merge(array($e->getMessage()), $e->get_parameters()));
- trigger_error($message, E_USER_WARNING);
+ trigger_error($message . adm_back_link($this->u_action), E_USER_WARNING);
}
}
@@ -161,7 +161,7 @@ class acp_extensions
{
$md_manager->validate_enable();
}
- catch (\phpbb\extension\exception $e)
+ catch (exception_interface $e)
{
$message = call_user_func_array(array($this->user, 'lang'), array_merge(array($e->getMessage()), $e->get_parameters()));
trigger_error($message . adm_back_link($this->u_action), E_USER_WARNING);
@@ -192,7 +192,7 @@ class acp_extensions
{
$md_manager->validate_enable();
}
- catch (\phpbb\extension\exception $e)
+ catch (exception_interface $e)
{
$message = call_user_func_array(array($this->user, 'lang'), array_merge(array($e->getMessage()), $e->get_parameters()));
trigger_error($message . adm_back_link($this->u_action), E_USER_WARNING);