aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-04-03 00:41:56 +0300
committerVjacheslav Trushkin <arty@phpbb.com>2012-04-03 00:41:56 +0300
commit57065095d570f0ff5976470ce81a4b216fe5f98e (patch)
treeb5d1134cd5045f9200acfca0987861c34d914e05 /phpBB/common.php
parent8363d3276522dedc55b20f63b53de116002a28eb (diff)
downloadforums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar
forums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar.gz
forums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar.bz2
forums-57065095d570f0ff5976470ce81a4b216fe5f98e.tar.xz
forums-57065095d570f0ff5976470ce81a4b216fe5f98e.zip
[ticket/10754] Changing $style to $phpbb_style
Renaming global variable $style to $phpbb_style PHPBB3-10754
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 b3b8d7e4f7..a00e3e82a8 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -125,7 +125,7 @@ $phpbb_extension_manager = new phpbb_extension_manager($db, EXT_TABLE, $phpbb_ro
$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);
-$style = new phpbb_style($phpbb_root_path, $phpEx, $config, $user, $phpbb_style_resource_locator, $phpbb_style_path_provider, $template);
+$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);
$phpbb_subscriber_loader->load();