aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-04-01 20:46:10 +0300
committerVjacheslav Trushkin <arty@phpbb.com>2012-04-01 20:46:10 +0300
commitc89ea703bda1006b382f8cc0da292f6e2a3701f5 (patch)
tree670ac212cae795732153fa4e43d55589904f88f9 /phpBB/includes/functions.php
parent2d9d8d367389c6bc0cef7852849e3d43ac682789 (diff)
downloadforums-c89ea703bda1006b382f8cc0da292f6e2a3701f5.tar
forums-c89ea703bda1006b382f8cc0da292f6e2a3701f5.tar.gz
forums-c89ea703bda1006b382f8cc0da292f6e2a3701f5.tar.bz2
forums-c89ea703bda1006b382f8cc0da292f6e2a3701f5.tar.xz
forums-c89ea703bda1006b382f8cc0da292f6e2a3701f5.zip
[ticket/10665] Solution for T_SUPER_TEMPLATE_PATH
Temporary solution for T_SUPER_TEMPLATE_PATH pointing to wrong directory, variable will be completely removed later because it will be obsolete PHPBB3-10665
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 74db8cb8fd..a44ebb04e8 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4770,7 +4770,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
'T_ASSETS_PATH' => "{$web_path}assets",
'T_THEME_PATH' => "{$web_path}styles/" . rawurlencode($user->theme['style_path']) . '/theme',
'T_TEMPLATE_PATH' => "{$web_path}styles/" . rawurlencode($user->theme['style_path']) . '/template',
- 'T_SUPER_TEMPLATE_PATH' => ($user->theme['style_parent_id']) ? "{$web_path}styles/" . rawurlencode($user->theme['style_parent_tree']) . '/template' : "{$web_path}styles/" . rawurlencode($user->theme['style_path']) . '/template',
+ 'T_SUPER_TEMPLATE_PATH' => "{$web_path}styles/" . rawurlencode($user->theme['style_path']) . '/template',
'T_IMAGES_PATH' => "{$web_path}images/",
'T_SMILIES_PATH' => "{$web_path}{$config['smilies_path']}/",
'T_AVATAR_PATH' => "{$web_path}{$config['avatar_path']}/",