diff options
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/admin/page_header_admin.php | 6 | ||||
| -rw-r--r-- | phpBB/templates/subSilver/admin/page_header.tpl | 2 | ||||
| -rw-r--r-- | phpBB/templates/subSilver/simple_header.tpl | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/phpBB/admin/page_header_admin.php b/phpBB/admin/page_header_admin.php index e9bdcfc0d3..de37b600f7 100644 --- a/phpBB/admin/page_header_admin.php +++ b/phpBB/admin/page_header_admin.php @@ -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'], diff --git a/phpBB/templates/subSilver/admin/page_header.tpl b/phpBB/templates/subSilver/admin/page_header.tpl index 4adce58429..8c937b250d 100644 --- a/phpBB/templates/subSilver/admin/page_header.tpl +++ b/phpBB/templates/subSilver/admin/page_header.tpl @@ -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"> <!-- diff --git a/phpBB/templates/subSilver/simple_header.tpl b/phpBB/templates/subSilver/simple_header.tpl index 6f08b18f47..650ce8fcaa 100644 --- a/phpBB/templates/subSilver/simple_header.tpl +++ b/phpBB/templates/subSilver/simple_header.tpl @@ -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"> <!-- |
