From aad13389cedf2569e4eb2b15a7baa96ce9d6954a Mon Sep 17 00:00:00 2001 From: javiexin Date: Fri, 16 Dec 2016 20:40:28 +0100 Subject: [PATCH] [ticket/14849] Add core.acp_extensions_run_action_after Additional event to be run after the execution of the action in ACP. Adding missing var as input to event. PHPBB-14849 --- phpBB/includes/acp/acp_extensions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/includes/acp/acp_extensions.php b/phpBB/includes/acp/acp_extensions.php index 67222b43a4..d41b94b026 100644 --- a/phpBB/includes/acp/acp_extensions.php +++ b/phpBB/includes/acp/acp_extensions.php @@ -361,6 +361,7 @@ class acp_extensions * @since 3.1.11-RC1 */ $u_action = $this->u_action; + $tpl_name = $this->tpl_name; $vars = array('action', 'u_action', 'ext_name', 'safe_time_limit', 'start_time', 'tpl_name'); extract($this->phpbb_dispatcher->trigger_event('core.acp_extensions_run_action_after', compact($vars)));