aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-01-07 21:50:16 +0100
committerIgor Wiedler <igor@wiedler.ch>2012-01-07 21:50:16 +0100
commit80f6f2b96f1ef0c3a3bf5637cac85a3c1fa229db (patch)
tree4aab022a3f39690b7bd1b9eb0f8dab8ed41aa642 /phpBB/includes/functions.php
parent03be9761375a082c2a43aceaa1b34661f87d702b (diff)
downloadforums-80f6f2b96f1ef0c3a3bf5637cac85a3c1fa229db.tar
forums-80f6f2b96f1ef0c3a3bf5637cac85a3c1fa229db.tar.gz
forums-80f6f2b96f1ef0c3a3bf5637cac85a3c1fa229db.tar.bz2
forums-80f6f2b96f1ef0c3a3bf5637cac85a3c1fa229db.tar.xz
forums-80f6f2b96f1ef0c3a3bf5637cac85a3c1fa229db.zip
[feature/event-dispatcher] Prefix event name with 'core.'
PHPBB3-9550
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 109f5b0366..45958d1a0d 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4747,7 +4747,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
$event = new phpbb_event_data();
$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
header('Content-type: text/html; charset=UTF-8');