1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-09 17:15:19 +02:00

Fixed charset issue in install (bug #647)

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3109 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt 2002-11-27 17:26:08 +00:00
parent f3530a69a8
commit abe31cd088
2 changed files with 5 additions and 3 deletions

View File

@ -278,7 +278,8 @@ if( !defined("PHPBB_INSTALLED") )
); );
$template->assign_vars(array( $template->assign_vars(array(
"L_INSTALLATION" => $lang['Welcome_install']) "L_INSTALLATION" => $lang['Welcome_install'],
"L_ENCODING" => $lang['ENCODING'])
); );
} }
else else
@ -336,7 +337,8 @@ else
); );
$template->assign_vars(array( $template->assign_vars(array(
"L_INSTALLATION" => $lang['Welcome_install']) "L_INSTALLATION" => $lang['Welcome_install'],
"L_ENCODING" => $lang['ENCODING'])
); );
$reinstall = true; $reinstall = true;

View File

@ -1,7 +1,7 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset={L_ENCODING}">
<meta http-equiv="Content-Style-Type" content="text/css"> <meta http-equiv="Content-Style-Type" content="text/css">
<title>{L_INSTALLATION}</title> <title>{L_INSTALLATION}</title>
<link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css"> <link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css">