diff options
author | Jonathan Stanley <shs@users.sourceforge.net> | 2006-10-07 00:56:58 +0000 |
---|---|---|
committer | Jonathan Stanley <shs@users.sourceforge.net> | 2006-10-07 00:56:58 +0000 |
commit | e87f740a9e7a048b7900d92ede04f405a337441c (patch) | |
tree | dc25203082db93f66ec8c17179403a51622b407e /phpBB/adm/style/simple_header.html | |
parent | 3ad6069d01f0db1a485b5758171282bac277ed2c (diff) | |
download | forums-e87f740a9e7a048b7900d92ede04f405a337441c.tar forums-e87f740a9e7a048b7900d92ede04f405a337441c.tar.gz forums-e87f740a9e7a048b7900d92ede04f405a337441c.tar.bz2 forums-e87f740a9e7a048b7900d92ede04f405a337441c.tar.xz forums-e87f740a9e7a048b7900d92ede04f405a337441c.zip |
Explicitly setting the (X)HTML content-language for the ACP so that Unicode font matching within browsers work correctly when Chinese/Korean/Japanese language packs are selected due to Han Unification
which map different graphemes to the same codepoint.
References:
http://www.w3.org/International/tutorials/tutorial-lang/
http://en.wikipedia.org/wiki/Han_unification
git-svn-id: file:///svn/phpbb/trunk@6451 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/simple_header.html')
-rw-r--r-- | phpBB/adm/style/simple_header.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/adm/style/simple_header.html b/phpBB/adm/style/simple_header.html index 836c2b8a52..b234ad6456 100644 --- a/phpBB/adm/style/simple_header.html +++ b/phpBB/adm/style/simple_header.html @@ -1,9 +1,10 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}"> +<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> <meta http-equiv="Content-Style-Type" content="text/css" /> +<meta http-equiv="Content-Language" content="{S_USER_LANG}" /> <meta http-equiv="imagetoolbar" content="no" /> <!-- IF META -->{META}<!-- ENDIF --> <title>{PAGE_TITLE}</title> |