1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 09:30:34 +01:00

Merge pull request #4747 from ErnadoO/ticket/15132

[ticket/15132] Add variable to the 'core.mcp_main_modify_shadow_sql' event
This commit is contained in:
Marc Alexander 2017-06-03 11:43:06 +02:00
commit b357f78546
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -630,10 +630,13 @@ function mcp_move_topic($topic_ids)
*
* @event core.mcp_main_modify_shadow_sql
* @var array shadow SQL array to be used by $db->sql_build_array
* @var array row Topic data
* @since 3.1.11-RC1
* @changed 3.1.11-RC1 Added variable: row
*/
$vars = array(
'shadow',
'row',
);
extract($phpbb_dispatcher->trigger_event('core.mcp_main_modify_shadow_sql', compact($vars)));