diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-07-30 13:56:13 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-07-30 13:56:13 +0000 |
commit | b7fe9f7b8a336c5718686b39b8cdff40e300aff1 (patch) | |
tree | d3d1bebf0943ed35be99a87d56eebff69a99e505 /phpBB/includes/functions.php | |
parent | b6d3eff8c8ae6888364c287afc0d2fc1d2079017 (diff) | |
download | forums-b7fe9f7b8a336c5718686b39b8cdff40e300aff1.tar forums-b7fe9f7b8a336c5718686b39b8cdff40e300aff1.tar.gz forums-b7fe9f7b8a336c5718686b39b8cdff40e300aff1.tar.bz2 forums-b7fe9f7b8a336c5718686b39b8cdff40e300aff1.tar.xz forums-b7fe9f7b8a336c5718686b39b8cdff40e300aff1.zip |
cleaning tpl fallbacks up
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8733 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 3f4d2743fc..a8e6faa65c 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3531,6 +3531,7 @@ function page_header($page_title = '', $display_online_list = true) 'T_THEME_PATH' => "{$phpbb_root_path}styles/" . $user->theme['theme_path'] . '/theme', 'T_TEMPLATE_PATH' => "{$phpbb_root_path}styles/" . $user->theme['template_path'] . '/template', + 'T_SUPER_TEMPLATE_PATH' => (isset($user->theme['template_inherit_path'])) ? "{$phpbb_root_path}styles/" . $user->theme['template_inherit_path'] . '/template' : '', 'T_IMAGESET_PATH' => "{$phpbb_root_path}styles/" . $user->theme['imageset_path'] . '/imageset', 'T_IMAGESET_LANG_PATH' => "{$phpbb_root_path}styles/" . $user->theme['imageset_path'] . '/imageset/' . $user->data['user_lang'], 'T_IMAGES_PATH' => "{$phpbb_root_path}images/", |