diff options
author | Tobi Schäfer <mail@tas2580.net> | 2016-05-05 20:46:46 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-06-13 21:10:13 +0200 |
commit | 516670225d85ba74a3477bed1ce6324a2f5ed0a7 (patch) | |
tree | 25ec755e885b5e0e0d3aa0309f30244afba97061 /phpBB/includes/functions_content.php | |
parent | 256730c76a43e14b91572a70819b016950ea0955 (diff) | |
download | forums-516670225d85ba74a3477bed1ce6324a2f5ed0a7.tar forums-516670225d85ba74a3477bed1ce6324a2f5ed0a7.tar.gz forums-516670225d85ba74a3477bed1ce6324a2f5ed0a7.tar.bz2 forums-516670225d85ba74a3477bed1ce6324a2f5ed0a7.tar.xz forums-516670225d85ba74a3477bed1ce6324a2f5ed0a7.zip |
[ticket/14626] Event core.make_jumpbox_modify_tpl_ary
https://tracker.phpbb.com/browse/PHPBB3-14626
PHPBB3-14626
Diffstat (limited to 'phpBB/includes/functions_content.php')
-rw-r--r-- | phpBB/includes/functions_content.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php index a9694e606e..0bf8bc99a0 100644 --- a/phpBB/includes/functions_content.php +++ b/phpBB/includes/functions_content.php @@ -243,8 +243,8 @@ function make_jumpbox($action, $forum_id = false, $select_all = false, $acl_list 'tpl_ary', ); extract($phpbb_dispatcher->trigger_event('core.make_jumpbox_modify_tpl_ary', compact($vars))); - - foreach($tpl_ary as $i => $ary) + + foreach ($tpl_ary as $i => $ary) { $template->assign_block_vars('jumpbox_forums', $ary); } |