mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[feature/event-dispatcher] Prefix event name with 'core.'
PHPBB3-9550
This commit is contained in:
parent
03be976137
commit
80f6f2b96f
1 changed files with 1 additions and 1 deletions
|
@ -4747,7 +4747,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
|
||||||
|
|
||||||
$event = new phpbb_event_data();
|
$event = new phpbb_event_data();
|
||||||
$event->set_data(compact('page_title', 'display_online_list', 'item_id', 'item'));
|
$event->set_data(compact('page_title', 'display_online_list', 'item_id', 'item'));
|
||||||
$phpbb_dispatcher->dispatch('page_header', $event);
|
$phpbb_dispatcher->dispatch('core.page_header', $event);
|
||||||
|
|
||||||
// application/xhtml+xml not used because of IE
|
// application/xhtml+xml not used because of IE
|
||||||
header('Content-type: text/html; charset=UTF-8');
|
header('Content-type: text/html; charset=UTF-8');
|
||||||
|
|
Loading…
Add table
Reference in a new issue