From 607f2e791f4b6a4c9670a3dad7e62c2c58939cbf Mon Sep 17 00:00:00 2001 From: Kailey Truscott Date: Sun, 28 Jun 2015 01:14:08 -0400 Subject: [PATCH] [ticket/13974] Add core.mcp_change_poster_after event Create a new event to perform additional tasks after chainging a post's poster. PHPBB3-13974 --- phpBB/includes/mcp/mcp_post.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/phpBB/includes/mcp/mcp_post.php b/phpBB/includes/mcp/mcp_post.php index 0d1df2b937..c53ddbfdea 100644 --- a/phpBB/includes/mcp/mcp_post.php +++ b/phpBB/includes/mcp/mcp_post.php @@ -559,6 +559,17 @@ function change_poster(&$post_info, $userdata) $post_info = $post_info[$post_id]; + /** + * This event allows you to perform additional tasks after changing a post's poster + * + * @event core.mcp_change_poster_after + * @var string userdata Information on a post's new poster + * @var array post_info Information on the affected post + * @since 3.1.6-RC1 + */ + $vars = array('userdata', 'post_info'); + extract($phpbb_dispatcher->trigger_event('core.mcp_change_poster_after', compact($vars))); + // Now add log entry add_log('mod', $post_info['forum_id'], $post_info['topic_id'], 'LOG_MCP_CHANGE_POSTER', $post_info['topic_title'], $from_username, $to_username); }