aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2012-04-09 00:35:51 +0200
committerNils Adermann <naderman@naderman.de>2012-04-09 00:35:51 +0200
commite57e82d478feccc3a995b71118663e7f65c02ea7 (patch)
treef4ede5ef46c0ffa2e12c1925849d73e8cfc34dcd /phpBB/install/index.php
parent26e7dd98b71655c7e09be02ebd3ef84765ce27b8 (diff)
parent57065095d570f0ff5976470ce81a4b216fe5f98e (diff)
downloadforums-e57e82d478feccc3a995b71118663e7f65c02ea7.tar
forums-e57e82d478feccc3a995b71118663e7f65c02ea7.tar.gz
forums-e57e82d478feccc3a995b71118663e7f65c02ea7.tar.bz2
forums-e57e82d478feccc3a995b71118663e7f65c02ea7.tar.xz
forums-e57e82d478feccc3a995b71118663e7f65c02ea7.zip
Merge remote-tracking branch 'github-cyberalien/ticket/10754' into develop
* github-cyberalien/ticket/10754: [ticket/10754] Changing $style to $phpbb_style
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r--phpBB/install/index.php6
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');