1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-24 16:21:20 +02: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

@ -813,16 +813,22 @@ class acp_users
break; break;
default: default:
$u_action = $this->u_action;
/** /**
* Run custom quicktool code * Run custom quicktool code
* *
* @event core.acp_users_overview_run_quicktool * @event core.acp_users_overview_run_quicktool
* @var array user_row Current user data
* @var string action Quick tool that should be run * @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 * @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))); extract($phpbb_dispatcher->trigger_event('core.acp_users_overview_run_quicktool', compact($vars)));
unset($u_action);
break; break;
} }