aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/viewforum.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index df5678def1..adf875114b 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -745,8 +745,16 @@ if (sizeof($topic_list))
'S_TOPIC_TYPE_SWITCH' => ($s_type_switch == $s_type_switch_test) ? -1 : $s_type_switch_test,
);
+ /**
+ * Modify the topic data before it is assigned to the template
+ *
+ * @event core.viewforum_modify_topicrow
+ * @var array row Array with topic data
+ * @var array topic_row Template array with topic data
+ * @since 3.1-A1
+ */
$vars = array('row', 'topic_row');
- extract($phpbb_dispatcher->trigger_event('core.viewforum_topicrow', compact($vars)));
+ extract($phpbb_dispatcher->trigger_event('core.viewforum_modify_topicrow', compact($vars)));
$template->assign_block_vars('topicrow', $topic_row);