aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-04-18 22:36:13 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-04-18 22:36:20 -0400
commita650da79cb9acbaa9f01565c4cf1001ab7cf7551 (patch)
treee09f4d8af05bfef763544c826dd18b2788a2efe9 /phpBB/common.php
parentd4b89a13b1371cb32af2be453ab04d9013d439fa (diff)
parented9a58a6ccea5b9b2685488ff0cfc45f0ccdbeb5 (diff)
downloadforums-a650da79cb9acbaa9f01565c4cf1001ab7cf7551.tar
forums-a650da79cb9acbaa9f01565c4cf1001ab7cf7551.tar.gz
forums-a650da79cb9acbaa9f01565c4cf1001ab7cf7551.tar.bz2
forums-a650da79cb9acbaa9f01565c4cf1001ab7cf7551.tar.xz
forums-a650da79cb9acbaa9f01565c4cf1001ab7cf7551.zip
Merge PR #761 branch 'naderman/ticket/10756' into develop
* naderman/ticket/10756: [ticket/10756] Fixing variable declarations in style and template classes [ticket/10756] Renaming phpbb_style_template to phpbb_template [ticket/10756] Removing path provider from template class [ticket/10756] Creating locator interface [ticket/10756] Renaming template classes [ticket/10756] Moving template classes
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 a00e3e82a8..81fe275008 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -124,7 +124,7 @@ $phpbb_extension_manager = new phpbb_extension_manager($db, EXT_TABLE, $phpbb_ro
// Initialize style
$phpbb_style_resource_locator = new phpbb_style_resource_locator();
$phpbb_style_path_provider = new phpbb_style_extension_path_provider($phpbb_extension_manager, new phpbb_style_path_provider());
-$template = new phpbb_style_template($phpbb_root_path, $phpEx, $config, $user, $phpbb_style_resource_locator, $phpbb_style_path_provider);
+$template = new phpbb_template($phpbb_root_path, $phpEx, $config, $user, $phpbb_style_resource_locator);
$phpbb_style = new phpbb_style($phpbb_root_path, $phpEx, $config, $user, $phpbb_style_resource_locator, $phpbb_style_path_provider, $template);
$phpbb_subscriber_loader = new phpbb_event_extension_subscriber_loader($phpbb_dispatcher, $phpbb_extension_manager);