aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-11-13 17:07:30 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-11-13 17:13:18 +0100
commitecda590b8657588b6b3719ca0d59ee824e5fc4b2 (patch)
treec7fe79f8e2955cd776e0b04849a7d6fb80e35791 /phpBB/viewtopic.php
parentc2c976fe031b2904b3acbefb73f03827c55aa441 (diff)
downloadforums-ecda590b8657588b6b3719ca0d59ee824e5fc4b2.tar
forums-ecda590b8657588b6b3719ca0d59ee824e5fc4b2.tar.gz
forums-ecda590b8657588b6b3719ca0d59ee824e5fc4b2.tar.bz2
forums-ecda590b8657588b6b3719ca0d59ee824e5fc4b2.tar.xz
forums-ecda590b8657588b6b3719ca0d59ee824e5fc4b2.zip
[ticket/12015] Add @change to events that got changed
PHPBB3-12015
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 36669e7383..bfe131dbc3 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1011,6 +1011,7 @@ $sql_ary = array(
* @var int start Pagination information
* @var array sql_ary The SQL array to get the data of posts and posters
* @since 3.1-A1
+* @change 3.1.0-a2 Added vars forum_id, topic_id, topic_data, post_list, sort_days, sort_key, sort_dir, start
*/
$vars = array('forum_id', 'topic_id', 'topic_data', 'post_list', 'sort_days', 'sort_key', 'sort_dir', 'start', 'sql_ary');
extract($phpbb_dispatcher->trigger_event('core.viewtopic_get_post_data', compact($vars)));
@@ -1714,6 +1715,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
* @var array user_poster_data Poster's data from user cache
* @var array post_row Template block array of the post
* @since 3.1-A1
+ * @change 3.1.0-a2 Added vars start, i, end and attachments
*/
$vars = array('start', 'i', 'end', 'row', 'cp_row', 'attachments', 'user_poster_data', 'post_row');
extract($phpbb_dispatcher->trigger_event('core.viewtopic_modify_post_row', compact($vars)));
@@ -1763,7 +1765,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
* @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
- * @since 3.1-A2
+ * @since 3.1.0-a2
*/
$vars = array('start', 'i', 'end', 'row', 'cp_row', 'attachments', 'user_poster_data', 'post_row');
extract($phpbb_dispatcher->trigger_event('core.viewtopic_post_row_after', compact($vars)));