aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/index.php
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-03-15 21:11:34 +0200
committerVjacheslav Trushkin <arty@phpbb.com>2012-03-15 21:11:34 +0200
commitfd96f97dc3c659e1d2e9b58420d652ad79387fbf (patch)
tree96bc528157271485983689b59967c5692f2fc21d /phpBB/adm/index.php
parent1ce4d4c4fc482f33fd061c4f718b4f8c3656dbdb (diff)
downloadforums-fd96f97dc3c659e1d2e9b58420d652ad79387fbf.tar
forums-fd96f97dc3c659e1d2e9b58420d652ad79387fbf.tar.gz
forums-fd96f97dc3c659e1d2e9b58420d652ad79387fbf.tar.bz2
forums-fd96f97dc3c659e1d2e9b58420d652ad79387fbf.tar.xz
forums-fd96f97dc3c659e1d2e9b58420d652ad79387fbf.zip
[feature/merging-style-components] Updating style initialization
Changing template initialization to style initialization. PHPBB3-10632
Diffstat (limited to 'phpBB/adm/index.php')
-rw-r--r--phpBB/adm/index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index e7168b210b..91894e5aec 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -50,9 +50,9 @@ $file_uploads = (@ini_get('file_uploads') == '1' || strtolower(@ini_get('file_up
$module_id = request_var('i', '');
$mode = request_var('mode', '');
-// Set custom template for admin area
-$template->set_ext_dir_prefix('adm/');
-$template->set_custom_template($phpbb_admin_path . 'style', 'admin');
+// Set custom style for admin area
+$style->set_ext_dir_prefix('adm/');
+$style->set_custom_style('admin', $phpbb_admin_path . 'style', '');
$template->assign_var('T_ASSETS_PATH', $phpbb_root_path . 'assets');
$template->assign_var('T_TEMPLATE_PATH', $phpbb_admin_path . 'style');