aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/page_header.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-04-28 17:54:22 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-04-28 17:54:22 +0000
commitec21217a2ae82225e3cdfede7d36a414c2cf136e (patch)
tree2c68992b276c7150a9b6be8a7226d64e817cd22c /phpBB/includes/page_header.php
parent9a155b4870cafa98ce56266a3880756a7dbdd35f (diff)
downloadforums-ec21217a2ae82225e3cdfede7d36a414c2cf136e.tar
forums-ec21217a2ae82225e3cdfede7d36a414c2cf136e.tar.gz
forums-ec21217a2ae82225e3cdfede7d36a414c2cf136e.tar.bz2
forums-ec21217a2ae82225e3cdfede7d36a414c2cf136e.tar.xz
forums-ec21217a2ae82225e3cdfede7d36a414c2cf136e.zip
Overhauled session code ... in a big way
git-svn-id: file:///svn/phpbb/trunk@208 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/page_header.php')
-rw-r--r--phpBB/includes/page_header.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php
index 0d333df535..433df3a948 100644
--- a/phpBB/includes/page_header.php
+++ b/phpBB/includes/page_header.php
@@ -67,6 +67,7 @@ $template->assign_vars(array(
"L_USERNAME" => $l_username,
"L_PASSWORD" => $l_password,
+ "L_LOG_ME_IN" => $l_log_me_in,
"L_WELCOMETO" => $l_welcometo,
"L_REGISTER" => $l_register,
"L_PROFILE" => $l_profile,
@@ -97,6 +98,7 @@ $template->assign_vars(array(
"S_TOPICS_URL" => POST_TOPIC_URL,
"S_USERS_URL" => POST_USERS_URL,
+ "T_HEAD_STYLESHEET" => $theme['head_stylesheet'],
"T_BODY_BACKGROUND" => $theme['body_background'],
"T_BODY_BGCOLOR" => "#".$theme['body_bgcolor'],
"T_BODY_TEXT" => "#".$theme['body_text'],
@@ -114,8 +116,8 @@ $template->assign_vars(array(
"T_TD_COLOR2" => "#".$theme['td_color2'],
"T_TD_COLOR3" => "#".$theme['td_color3'],
"T_FONTFACE1" => $theme['fontface1'],
- "T_FONTFACE2" => $theme['fontface1'],
- "T_FONTFACE3" => $theme['fontface1'],
+ "T_FONTFACE2" => $theme['fontface2'],
+ "T_FONTFACE3" => $theme['fontface3'],
"T_FONTSIZE1" => $theme['fontsize1'],
"T_FONTSIZE2" => $theme['fontsize2'],
"T_FONTSIZE3" => $theme['fontsize3'],