1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-22 08:30:26 +01:00

[ticket/15409] Add u_action to core.acp_users_overview_run_quicktool

PHPBB3-15409
This commit is contained in:
kasimi 2017-10-16 22:59:41 +02:00
parent 2c01fe67e9
commit 0b42b34531
No known key found for this signature in database
GPG Key ID: 3163AB573241193A

View File

@ -813,16 +813,22 @@ class acp_users
break;
default:
$u_action = $this->u_action;
/**
* Run custom quicktool code
*
* @event core.acp_users_overview_run_quicktool
* @var array user_row Current user data
* @var string action Quick tool that should be run
* @var array user_row Current user data
* @var string u_action The u_action link
* @since 3.1.0-a1
* @changed 3.2.2-RC1 Added u_action
*/
$vars = array('action', 'user_row');
$vars = array('action', 'user_row', 'u_action');
extract($phpbb_dispatcher->trigger_event('core.acp_users_overview_run_quicktool', compact($vars)));
unset($u_action);
break;
}