aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-06-20 16:03:46 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-08-01 10:18:51 +0200
commit45d534978b4d5f20666dbf9b8de721fe02197746 (patch)
tree9330519a3d5d2a5bc5f3a29f214f4d8b0daeb5e2 /phpBB
parent4745d4ec6c5c25757818bf528f1019da4ebd2534 (diff)
downloadforums-45d534978b4d5f20666dbf9b8de721fe02197746.tar
forums-45d534978b4d5f20666dbf9b8de721fe02197746.tar.gz
forums-45d534978b4d5f20666dbf9b8de721fe02197746.tar.bz2
forums-45d534978b4d5f20666dbf9b8de721fe02197746.tar.xz
forums-45d534978b4d5f20666dbf9b8de721fe02197746.zip
[feature/php-events] Make topic db row available in event
PHPBB3-9550
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/viewforum.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 524d5c212a..bc385a6a7a 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -745,7 +745,7 @@ if (sizeof($topic_list))
'S_TOPIC_TYPE_SWITCH' => ($s_type_switch == $s_type_switch_test) ? -1 : $s_type_switch_test,
);
- $vars = array('topicrow');
+ $vars = array('row', 'topicrow');
extract($phpbb_dispatcher->trigger_event('core.viewforum_topicrow', compact($vars)));
$template->assign_block_vars('topicrow', $topicrow);