mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Remove trailing slash from T_XXXX_PATH vars
git-svn-id: file:///svn/phpbb/trunk@4375 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
2a9d846859
commit
0b4d299df9
1 changed files with 3 additions and 3 deletions
|
@ -1338,9 +1338,9 @@ function page_header($page_title = '')
|
||||||
'S_DISPLAY_PM' => (empty($config['privmsg_disable'])) ? 1 : 0,
|
'S_DISPLAY_PM' => (empty($config['privmsg_disable'])) ? 1 : 0,
|
||||||
'S_DISPLAY_MEMBERLIST' => (isset($auth)) ? $auth->acl_get('u_viewprofile') : 0,
|
'S_DISPLAY_MEMBERLIST' => (isset($auth)) ? $auth->acl_get('u_viewprofile') : 0,
|
||||||
|
|
||||||
'T_THEME_PATH' => 'styles/' . $user->theme['primary']['theme_path'] . '/theme/',
|
'T_THEME_PATH' => 'styles/' . $user->theme['primary']['theme_path'] . '/theme',
|
||||||
'T_TEMPLATE_PATH' => 'styles/' . $user->theme['primary']['template_path'] . 'template/',
|
'T_TEMPLATE_PATH' => 'styles/' . $user->theme['primary']['template_path'] . 'template',
|
||||||
'T_IMAGESET_PATH' => 'styles/' . $user->theme['primary']['imageset_path'] . 'imageset/',
|
'T_IMAGESET_PATH' => 'styles/' . $user->theme['primary']['imageset_path'] . 'imageset',
|
||||||
'T_STYLESHEET_LINK' => (!$user->theme['primary']['theme_storedb']) ? 'styles/' . $user->theme['primary']['theme_path'] . '/theme/stylesheet.css' : "style.$phpEx?sid=$user->session_id&id=" . $user->theme['primary']['theme_id'],
|
'T_STYLESHEET_LINK' => (!$user->theme['primary']['theme_storedb']) ? 'styles/' . $user->theme['primary']['theme_path'] . '/theme/stylesheet.css' : "style.$phpEx?sid=$user->session_id&id=" . $user->theme['primary']['theme_id'],
|
||||||
'T_THEME_DATA' => (!$user->theme['primary']['theme_storedb']) ? '' : $user->theme['primary']['theme_data'])
|
'T_THEME_DATA' => (!$user->theme['primary']['theme_storedb']) ? '' : $user->theme['primary']['theme_data'])
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue