diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-27 13:58:54 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-27 13:58:54 +0100 |
commit | 344311481ffbc62c9099ec215408d609f876299d (patch) | |
tree | f24540945f023e7500516a79d3b95af6fd859fbb | |
parent | 60b45bb0bd1d89e038e651fe7d50399a8ce0cf3e (diff) | |
parent | 7b43d5c54e82459925a27efb620980508543e703 (diff) | |
download | forums-344311481ffbc62c9099ec215408d609f876299d.tar forums-344311481ffbc62c9099ec215408d609f876299d.tar.gz forums-344311481ffbc62c9099ec215408d609f876299d.tar.bz2 forums-344311481ffbc62c9099ec215408d609f876299d.tar.xz forums-344311481ffbc62c9099ec215408d609f876299d.zip |
Merge branch 'develop-ascraeus' into develop
-rw-r--r-- | phpBB/report.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/phpBB/report.php b/phpBB/report.php index 1b5d3c9d46..3ea6bb40c5 100644 --- a/phpBB/report.php +++ b/phpBB/report.php @@ -99,6 +99,24 @@ if ($post_id) // Check required permissions $acl_check_ary = array('f_list' => 'POST_NOT_EXIST', 'f_read' => 'USER_CANNOT_READ', 'f_report' => 'USER_CANNOT_REPORT'); + /** + * This event allows you to do extra auth checks and verify if the user + * has the required permissions + * + * @event core.report_post_auth + * @var array forum_data All data available from the forums table on this post's forum + * @var array report_data All data available from the topics and the posts tables on this post (and its topic) + * @var array acl_check_ary An array with the ACL to be tested. The evaluation is made in the same order as the array is sorted + * The key is the ACL name and the value is the language key for the error message. + * @since 3.1.3-RC1 + */ + $vars = array( + 'forum_data', + 'report_data', + 'acl_check_ary', + ); + extract($phpbb_dispatcher->trigger_event('core.report_post_auth', compact($vars))); + foreach ($acl_check_ary as $acl => $error) { if (!$auth->acl_get($acl, $forum_id)) |