1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 17:56:52 +02:00

Minor updates and alterations mainly to templating vars

git-svn-id: file:///svn/phpbb/trunk@219 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-04-30 15:21:31 +00:00
parent 9c16714d85
commit e4cf961900
3 changed files with 35 additions and 4 deletions

View File

@@ -96,13 +96,19 @@ else
//
$page_title = "Log In";
include('includes/page_header.'.$phpEx);
$template->set_filenames(array("body" => "login_body.tpl"));
$template->set_filenames(
array(
"header" => "login_header.tpl",
"body" => "login_body.tpl",
"footer" => "login_footer.tpl"
)
);
$template->pparse("header");
$template->assign_vars(array(
"L_USERNAME" => $l_username,
"L_PASSWORD" => $l_password,
"L_SEND_PASSWORD" => $l_resend_password,
"L_AUTO_LOGIN" => $l_autologin,
"L_LOGIN" => $l_login,
"U_SEND_PASSWORD" => "sendpassword.".$phpEx,
@@ -111,6 +117,7 @@ else
);
$template->pparse("body");
$template->pparse("footer");
include('includes/page_tail.'.$phpEx);