mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Add charset encoding to header
git-svn-id: file:///svn/phpbb/trunk@1762 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
030da451eb
commit
c7e0bf8c2d
3 changed files with 7 additions and 3 deletions
|
@ -113,7 +113,11 @@ $template->assign_vars(array(
|
|||
"S_TIMEZONE" => $s_timezone,
|
||||
"S_LOGIN_ACTION" => append_sid("../login.$phpEx"),
|
||||
"S_JUMPBOX_ACTION" => append_sid("../viewforum.$phpEx"),
|
||||
"S_CURRENT_TIME" => create_date($board_config['default_dateformat'], time(), $board_config['board_timezone']),
|
||||
"S_CURRENT_TIME" => create_date($board_config['default_dateformat'], time(), $board_config['board_timezone']),
|
||||
"S_CONTENT_DIRECTION" => $lang['DIRECTION'],
|
||||
"S_CONTENT_ENCODING" => $lang['ENCODING'],
|
||||
"S_CONTENT_DIR_LEFT" => $lang['LEFT'],
|
||||
"S_CONTENT_DIR_RIGHT" => $lang['RIGHT'],
|
||||
|
||||
"T_HEAD_STYLESHEET" => $theme['head_stylesheet'],
|
||||
"T_BODY_BACKGROUND" => $theme['body_background'],
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
{META}
|
||||
<meta name="MSSmartTagsPreventParsing" content="TRUE">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
|
||||
<link rel="stylesheet" href="../templates/subSilver/{T_HEAD_STYLESHEET}" type="text/css" />
|
||||
<style type="text/css">
|
||||
<!--
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
|
||||
<meta http-equiv="Content-Style-Type" content="text/css" />
|
||||
<style type="text/css">
|
||||
<!--
|
||||
|
|
Loading…
Add table
Reference in a new issue