aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-02-27 11:04:55 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-02-27 11:04:55 +0100
commit7c41be4f516708d0eb835db0bd8418730d46ec1e (patch)
tree719cf8a9c57e290829863513deeb3b1a08acf046 /phpBB/includes/functions_posting.php
parenta937e38bd5d71d1cdb5ecc6de23d88c7d04f21c4 (diff)
parentee7cba5df753bacc292e6faf09551f55e72fe9c8 (diff)
downloadforums-7c41be4f516708d0eb835db0bd8418730d46ec1e.tar
forums-7c41be4f516708d0eb835db0bd8418730d46ec1e.tar.gz
forums-7c41be4f516708d0eb835db0bd8418730d46ec1e.tar.bz2
forums-7c41be4f516708d0eb835db0bd8418730d46ec1e.tar.xz
forums-7c41be4f516708d0eb835db0bd8418730d46ec1e.zip
Merge branch '3.1.x' into 3.2.x
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 56d2408e88..58753122cc 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -977,6 +977,32 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id
$db->sql_freeresult($result);
}
+ /**
+ * Event to modify the posts list for topic reviews
+ *
+ * @event core.topic_review_modify_post_list
+ * @var array attachments Array with the post attachments data
+ * @var int cur_post_id Post offset ID
+ * @var int forum_id The topic's forum ID
+ * @var string mode The topic review mode
+ * @var array post_list Array with the post IDs
+ * @var array rowset Array with the posts data
+ * @var bool show_quote_button Flag indicating if the quote button should be displayed
+ * @var int topic_id The topic ID that is being reviewed
+ * @since 3.1.9-RC1
+ */
+ $vars = array(
+ 'attachments',
+ 'cur_post_id',
+ 'forum_id',
+ 'mode',
+ 'post_list',
+ 'rowset',
+ 'show_quote_button',
+ 'topic_id',
+ );
+ extract($phpbb_dispatcher->trigger_event('core.topic_review_modify_post_list', compact($vars)));
+
for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
{
// A non-existing rowset only happens if there was no user present for the entered poster_id