aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-03-21 13:15:45 +0100
committerIgor Wiedler <igor@wiedler.ch>2012-03-21 13:15:45 +0100
commitbaefbdb8825a37051a200203a0191d34caa12229 (patch)
tree67112dfd84de217218472cd983e87d4977dafb03 /phpBB/common.php
parentb4b586ae10ce34d1c7d00d784fac7a51804eff3e (diff)
downloadforums-baefbdb8825a37051a200203a0191d34caa12229.tar
forums-baefbdb8825a37051a200203a0191d34caa12229.tar.gz
forums-baefbdb8825a37051a200203a0191d34caa12229.tar.bz2
forums-baefbdb8825a37051a200203a0191d34caa12229.tar.xz
forums-baefbdb8825a37051a200203a0191d34caa12229.zip
[feature/event-dispatcher] Add phpbb_event_dispatcher_wrapper
PHPBB3-9550
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 132b95c1fe..c7e66ef0d6 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -100,7 +100,7 @@ $phpbb_class_loader_ext->set_cache($cache->get_driver());
$phpbb_class_loader->set_cache($cache->get_driver());
// Instantiate some basic classes
-$phpbb_dispatcher = new EventDispatcher();
+$phpbb_dispatcher = new phpbb_event_dispatcher_wrapper(new EventDispatcher());
$request = new phpbb_request();
$user = new user();
$auth = new auth();