diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-08-03 12:34:19 +0200 |
---|---|---|
committer | Patrick Webster <noxwizard@phpbb.com> | 2012-08-03 05:57:07 -0500 |
commit | 3c71f07a3eddd4fa824c401de2e77ce00e5aec15 (patch) | |
tree | 6fe4291f9651cffd69dad9ca826b8cc641142e4d /phpBB/common.php | |
parent | ae612de663dbcd76074df4ea950a3a94745ca0ec (diff) | |
download | forums-3c71f07a3eddd4fa824c401de2e77ce00e5aec15.tar forums-3c71f07a3eddd4fa824c401de2e77ce00e5aec15.tar.gz forums-3c71f07a3eddd4fa824c401de2e77ce00e5aec15.tar.bz2 forums-3c71f07a3eddd4fa824c401de2e77ce00e5aec15.tar.xz forums-3c71f07a3eddd4fa824c401de2e77ce00e5aec15.zip |
[ticket/11043] Change hook name back to display, since that's where we hook in.
PHPBB3-11043
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index a3e4af88ec..5882bbf9fb 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -132,7 +132,7 @@ $phpbb_subscriber_loader->load(); // 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', 'call_hook'))); +$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('phpbb_template', 'display'))); foreach ($cache->obtain_hooks() as $hook) { |