diff options
| author | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-03 00:41:56 +0300 |
|---|---|---|
| committer | Vjacheslav Trushkin <arty@phpbb.com> | 2012-04-03 00:41:56 +0300 |
| commit | 57065095d570f0ff5976470ce81a4b216fe5f98e (patch) | |
| tree | b5d1134cd5045f9200acfca0987861c34d914e05 /phpBB/install/index.php | |
| parent | 8363d3276522dedc55b20f63b53de116002a28eb (diff) | |
| download | forums-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/install/index.php')
| -rw-r--r-- | phpBB/install/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 13ab30a9fa..bb10521bba 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -203,9 +203,9 @@ $config = new phpbb_config(array( $phpbb_style_resource_locator = new phpbb_style_resource_locator(); $phpbb_style_path_provider = 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); -$style->set_ext_dir_prefix('adm/'); -$style->set_custom_style('admin', '../adm/style', ''); +$phpbb_style = new phpbb_style($phpbb_root_path, $phpEx, $config, $user, $phpbb_style_resource_locator, $phpbb_style_path_provider, $template); +$phpbb_style->set_ext_dir_prefix('adm/'); +$phpbb_style->set_custom_style('admin', '../adm/style', ''); $template->assign_var('T_ASSETS_PATH', '../assets'); $template->assign_var('T_TEMPLATE_PATH', '../adm/style'); |
