diff options
author | David King <imkingdavid@gmail.com> | 2012-06-11 17:49:07 -0400 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-01 10:18:49 +0200 |
commit | 2be60b80ae6fc1da09af8eeaffc8d72aafc0c3b1 (patch) | |
tree | c93d8e2b5e72fa8ae3390c51c5952ab333f17f9f /phpBB/index.php | |
parent | 611d965b043c2a566e817f29d618ff841aa02c34 (diff) | |
download | forums-2be60b80ae6fc1da09af8eeaffc8d72aafc0c3b1.tar forums-2be60b80ae6fc1da09af8eeaffc8d72aafc0c3b1.tar.gz forums-2be60b80ae6fc1da09af8eeaffc8d72aafc0c3b1.tar.bz2 forums-2be60b80ae6fc1da09af8eeaffc8d72aafc0c3b1.tar.xz forums-2be60b80ae6fc1da09af8eeaffc8d72aafc0c3b1.zip |
[feature/events] Rename core.index to core.index_page_title
This makes it clearer as to what the event actually does.
PHPBB3-9550
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index 00dcbb5855..febd630a2b 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -174,7 +174,7 @@ $template->assign_vars(array( $page_title = $user->lang['INDEX']; $vars = array('page_title'); -extract($phpbb_dispatcher->trigger_event('core.index', compact($vars))); +extract($phpbb_dispatcher->trigger_event('core.index_page_title', compact($vars))); // Output page page_header($page_title); |