diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-09-27 20:45:46 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-09-27 20:45:46 +0000 |
commit | 3e23d958acebe249260d5790abf6fafe69647d06 (patch) | |
tree | 455bd7edbb030ff4da08f081ecf732c4ae4ce6d1 /phpBB/includes/functions.php | |
parent | 3db6ba2561ab4a0427ca2c4af72dcd82fd4ea097 (diff) | |
download | forums-3e23d958acebe249260d5790abf6fafe69647d06.tar forums-3e23d958acebe249260d5790abf6fafe69647d06.tar.gz forums-3e23d958acebe249260d5790abf6fafe69647d06.tar.bz2 forums-3e23d958acebe249260d5790abf6fafe69647d06.tar.xz forums-3e23d958acebe249260d5790abf6fafe69647d06.zip |
Fix missing path seperators in template/imageset T_ vars
git-svn-id: file:///svn/phpbb/trunk@4515 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 8f80a02155..8ca64d5a0e 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -618,7 +618,7 @@ function markread($mode, $forum_id = 0, $topic_id = 0, $marktime = false) // If the cookie grows larger than 3000 characters we will remove // the smallest value - if (strlen($_COOKIE[$config['cookie_name'] . '_track']) > 3000) + if (strlen($_COOKIE[$config['cookie_name'] . '_track']) > 2000) { foreach ($tracking as $f => $t_ary) { @@ -1341,8 +1341,8 @@ function page_header($page_title = '') 'S_DISPLAY_MEMBERLIST' => (isset($auth)) ? $auth->acl_get('u_viewprofile') : 0, 'T_THEME_PATH' => 'styles/' . $user->theme['primary']['theme_path'] . '/theme', - 'T_TEMPLATE_PATH' => 'styles/' . $user->theme['primary']['template_path'] . 'template', - 'T_IMAGESET_PATH' => 'styles/' . $user->theme['primary']['imageset_path'] . 'imageset', + 'T_TEMPLATE_PATH' => 'styles/' . $user->theme['primary']['template_path'] . '/template', + '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_THEME_DATA' => (!$user->theme['primary']['theme_storedb']) ? '' : $user->theme['primary']['theme_data']) ); |