diff options
| author | kasimi <kasimi@inbox.ru> | 2015-01-25 13:01:02 +0100 |
|---|---|---|
| committer | kasimi <kasimi@inbox.ru> | 2015-01-25 13:01:02 +0100 |
| commit | 33d7eb69efe60240fdc4e845d9d4228c572f62ac (patch) | |
| tree | a7374103339378c4d3a6b951eb345ee1dfa1a985 /phpBB/includes/functions_posting.php | |
| parent | 12fba958928036f9da9a8fe000693ca230a37285 (diff) | |
| download | forums-33d7eb69efe60240fdc4e845d9d4228c572f62ac.tar forums-33d7eb69efe60240fdc4e845d9d4228c572f62ac.tar.gz forums-33d7eb69efe60240fdc4e845d9d4228c572f62ac.tar.bz2 forums-33d7eb69efe60240fdc4e845d9d4228c572f62ac.tar.xz forums-33d7eb69efe60240fdc4e845d9d4228c572f62ac.zip | |
[ticket/13540] Added var row to both events
PHPBB3-13540
Diffstat (limited to 'phpBB/includes/functions_posting.php')
| -rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 9ab71815c5..f3c49badfe 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1210,6 +1210,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id * @var int cur_post_id Post offset id * @var int current_row_number Number of the current row being iterated * @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( @@ -1219,6 +1220,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id 'cur_post_id', 'current_row_number', 'post_row', + 'row', ); extract($phpbb_dispatcher->trigger_event('core.topic_review_modify_row', compact($vars))); |
