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

[ticket/13150] Add core.phpbb_log_get_topic_auth_sql_after

PHPBB3-13150
This commit is contained in:
Jakub Senko 2017-10-03 15:05:21 +02:00
parent 93621aa184
commit 4d333e7f70
No known key found for this signature in database
GPG Key ID: 6A7C328CD66EC21E

View File

@ -928,6 +928,20 @@ class log implements \phpbb\log\log_interface
$forum_auth['f_read'][$row['topic_id']] = $row['forum_id'];
}
/**
* Allow modifying SQL query after topic data is retrieved (inside loop).
*
* @event core.phpbb_log_get_topic_auth_sql_after
* @var array forum_auth Forum permissions
* @var array row One row of data from SQL query
* @since 3.2.2-RC1
*/
$vars = array(
'forum_auth',
'row',
);
extract($this->dispatcher->trigger_event('core.phpbb_log_get_topic_auth_sql_after', compact($vars)));
if ($this->auth->acl_gets('a_', 'm_', $row['forum_id']))
{
$forum_auth['m_'][$row['topic_id']] = $row['forum_id'];