Fix html doctype check. Props zekrap. fixes #8745 for 2.7

git-svn-id: http://svn.automattic.com/wordpress/branches/2.7@10266 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-12-30 18:35:45 +00:00
parent f06e4fc681
commit 77ab18f590

View File

@ -1592,7 +1592,7 @@ function language_attributes($doctype = 'html') {
$attributes[] = "dir=\"$dir\"";
if ( $lang = get_bloginfo('language') ) {
if ( get_option('html_type') == 'text/html' || $doctype == 'xhtml' )
if ( get_option('html_type') == 'text/html' || $doctype == 'html' )
$attributes[] = "lang=\"$lang\"";
if ( get_option('html_type') != 'text/html' || $doctype == 'xhtml' )