aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-04-01 19:52:44 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-04-01 19:52:44 +0200
commit9a075e905d23110f0b3310f9bfe6e89b44be1b57 (patch)
treefb87c78dc1c8fcd26b93c285011311a6ab8ce20e /phpBB/includes/functions.php
parent813e52a03ad654a357439d6d80f66a18b189eb62 (diff)
parent37480e5594145bbead07c8f70644d52983f92913 (diff)
downloadforums-9a075e905d23110f0b3310f9bfe6e89b44be1b57.tar
forums-9a075e905d23110f0b3310f9bfe6e89b44be1b57.tar.gz
forums-9a075e905d23110f0b3310f9bfe6e89b44be1b57.tar.bz2
forums-9a075e905d23110f0b3310f9bfe6e89b44be1b57.tar.xz
forums-9a075e905d23110f0b3310f9bfe6e89b44be1b57.zip
Merge remote-tracking branch 'cyberalien/ticket/10665' into develop
* cyberalien/ticket/10665: [ticket/10665] Adding includejs to acp templates [ticket/10665] Solution for T_SUPER_TEMPLATE_PATH [ticket/10665] New test class for templates with tree [ticket/10665] Changing template->_js_include to public [ticket/10665] Moving filter parameters to one array [ticket/10665] INCLUDEJS unit test [ticket/10665] Changing template compiler test [ticket/10665] INCLUDEJS template changes [ticket/10665] INCLUDEJS template tag
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']}/",