aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp
diff options
context:
space:
mode:
author3D-I <marktravai@gmail.com>2018-10-17 03:51:51 +0200
committer3D-I <marktravai@gmail.com>2018-10-17 03:52:28 +0200
commitb5ba220584b644e2ce6212c7d7f3d4cea310c8c9 (patch)
tree6c9baf7ae4a039a865f5976982e4929888a8e1ea /phpBB/includes/mcp
parent710760b9e460347d3712ca3593295fbf0fb92ec9 (diff)
downloadforums-b5ba220584b644e2ce6212c7d7f3d4cea310c8c9.tar
forums-b5ba220584b644e2ce6212c7d7f3d4cea310c8c9.tar.gz
forums-b5ba220584b644e2ce6212c7d7f3d4cea310c8c9.tar.bz2
forums-b5ba220584b644e2ce6212c7d7f3d4cea310c8c9.tar.xz
forums-b5ba220584b644e2ce6212c7d7f3d4cea310c8c9.zip
[ticket/15826] Add core.mcp_main_fork_sql_after
Add row array PHPBB3-15826
Diffstat (limited to 'phpBB/includes/mcp')
-rw-r--r--phpBB/includes/mcp/mcp_main.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php
index 86257798f4..c66367e727 100644
--- a/phpBB/includes/mcp/mcp_main.php
+++ b/phpBB/includes/mcp/mcp_main.php
@@ -1465,12 +1465,14 @@ function mcp_fork_topic($topic_ids)
* @var int new_topic_id The newly created topic ID
* @var int to_forum_id The forum ID where the forked topic has been moved to
* @var int new_post_id The newly created post ID
+ * @var array row Post data
* @since 3.2.4-RC1
*/
$vars = array(
'new_topic_id',
'to_forum_id',
'new_post_id',
+ 'row',
);
extract($phpbb_dispatcher->trigger_event('core.mcp_main_fork_sql_after', compact($vars)));