diff options
Diffstat (limited to 'phpBB/includes/mcp/mcp_topic.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_topic.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php index 6762d37015..3a456169d5 100644 --- a/phpBB/includes/mcp/mcp_topic.php +++ b/phpBB/includes/mcp/mcp_topic.php @@ -266,6 +266,7 @@ function mcp_topic_view($id, $mode, $action) * @var int start Start item of this page * @var int current_row_number Number of the post on this page * @var array post_row Template block array of the current post + * @var array row Array with original post and user data * @since 3.1.4-RC1 */ $vars = array( @@ -276,6 +277,7 @@ function mcp_topic_view($id, $mode, $action) 'start', 'current_row_number', 'post_row', + 'row', ); extract($phpbb_dispatcher->trigger_event('core.mcp_topic_review_modify_row', compact($vars))); |