1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-21 16:10:38 +01:00

[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
This commit is contained in:
javiexin 2016-12-16 20:40:28 +01:00
parent 620d033e06
commit aad13389ce

View File

@ -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)));