diff options
author | rxu <rxu@mail.ru> | 2014-04-13 20:54:15 +0800 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2014-04-13 23:13:55 +0800 |
commit | 62a729e85efe92bd268c691b6b73bdf379d8fb8e (patch) | |
tree | 27f81a11be4b8831ab1bb3f795107f3c57375a5f | |
parent | cbc1c4bf3186944750ae5075b6f9c225318ab31e (diff) | |
download | forums-62a729e85efe92bd268c691b6b73bdf379d8fb8e.tar forums-62a729e85efe92bd268c691b6b73bdf379d8fb8e.tar.gz forums-62a729e85efe92bd268c691b6b73bdf379d8fb8e.tar.bz2 forums-62a729e85efe92bd268c691b6b73bdf379d8fb8e.tar.xz forums-62a729e85efe92bd268c691b6b73bdf379d8fb8e.zip |
[ticket/12401] Pass more data to core.viewtopic_modify_post_row event
$topic_data array is used in viewtopic.php to populate $post_row template
block array data. Although $topic_data is not being passed
to core.viewtopic_modify_post_row event for modifying/adding
$post_row data in it. So, pass this array to the event.
Also, total_posts is added.
PHPBB3-12401
-rw-r--r-- | phpBB/viewtopic.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 1a74ad3e38..885a706331 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1674,15 +1674,18 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) * @var int start Start item of this page * @var int current_row_number Number of the post on this page * @var int end Number of posts on this page + * @var int total_posts Total posts count * @var array row Array with original post and user data * @var array cp_row Custom profile field data of the poster * @var array attachments List of attachments * @var array user_poster_data Poster's data from user cache * @var array post_row Template block array of the post + * @var array topic_data Array with topic data * @since 3.1-A1 * @change 3.1.0-a3 Added vars start, current_row_number, end, attachments + * @change 3.1.0-b3 Added topic_data array, total_posts */ - $vars = array('start', 'current_row_number', 'end', 'row', 'cp_row', 'attachments', 'user_poster_data', 'post_row'); + $vars = array('start', 'current_row_number', 'end', 'total_posts', 'row', 'cp_row', 'attachments', 'user_poster_data', 'post_row', 'topic_data'); extract($phpbb_dispatcher->trigger_event('core.viewtopic_modify_post_row', compact($vars))); $i = $current_row_number; |