aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-10-20 22:44:33 -0500
committerMarc Alexander <admin@m-a-styles.de>2014-10-20 22:44:33 -0500
commit99eeb52b763fb2efb2e5dad2b39c06b2be8c74b5 (patch)
treef224d247931604a0a0b0f1516077483822e86645
parentafada9ed409ca7abdb2dc95c10d1cac3aacf86a6 (diff)
parentb9b15b700736769b79ccb8f41265bea548877f45 (diff)
downloadforums-99eeb52b763fb2efb2e5dad2b39c06b2be8c74b5.tar
forums-99eeb52b763fb2efb2e5dad2b39c06b2be8c74b5.tar.gz
forums-99eeb52b763fb2efb2e5dad2b39c06b2be8c74b5.tar.bz2
forums-99eeb52b763fb2efb2e5dad2b39c06b2be8c74b5.tar.xz
forums-99eeb52b763fb2efb2e5dad2b39c06b2be8c74b5.zip
Merge pull request #3050 from prototech/ticket/13070
[ticket/13070] Adjust template hook name to match that provided in the class.
-rw-r--r--phpBB/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index f6586c40fe..0782bd7321 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -104,7 +104,7 @@ require($phpbb_root_path . 'includes/compatibility_globals.' . $phpEx);
// Add own hook handler
require($phpbb_root_path . 'includes/hooks/index.' . $phpEx);
-$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('\phpbb\template\template', 'display')));
+$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('template', 'display')));
$phpbb_hook_finder = $phpbb_container->get('hook_finder');
foreach ($phpbb_hook_finder->find() as $hook)