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

[ticket/15889] Add core.memberlist_modify_memberrow_sql

PHPBB3-15889
This commit is contained in:
3D-I 2018-11-30 04:44:49 +01:00
parent 89b6fb1168
commit c5082250ea

View File

@ -1507,7 +1507,7 @@ switch ($mode)
* @var string sql_select Additional select statement
* @var string sql_from Additional from statement
* @var array sql_array Array containing the main query
* @var array row Array containing the user_ID data
* @var array id_cache Array of temp user ID data
* @since 3.2.6-RC1
*/
$vars = array(
@ -1515,7 +1515,7 @@ switch ($mode)
'sql_select',
'sql_from',
'sql_array',
'row'
'id_cache',
);
extract($phpbb_dispatcher->trigger_event('core.memberlist_modify_memberrow_sql', compact($vars)));