summaryrefslogtreecommitdiffstats
path: root/wp-includes/general-template.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-22 11:44:06 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-22 11:44:06 +0000
commitb2f9804dae80c5f6c70c70e92a3bbde67e2615c5 (patch)
tree7615f215a90e4c797702547dab832d30887a0a54 /wp-includes/general-template.php
parent4e71faf4fa1a98517df1c83be342dd3714f504d2 (diff)
downloadwordpress-mu-b2f9804dae80c5f6c70c70e92a3bbde67e2615c5.tar.gz
wordpress-mu-b2f9804dae80c5f6c70c70e92a3bbde67e2615c5.tar.xz
wordpress-mu-b2f9804dae80c5f6c70c70e92a3bbde67e2615c5.zip
WP Merge to 4780
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@854 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/general-template.php')
-rw-r--r--wp-includes/general-template.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php
index 69470db..4a5d596 100644
--- a/wp-includes/general-template.php
+++ b/wp-includes/general-template.php
@@ -919,7 +919,9 @@ function language_attributes() {
$output = "dir=\"$dir\"";
if ( $lang = get_bloginfo('language') ) {
if ( $dir ) $output .= ' ';
- $output .= "lang=\"$lang\" xml:lang=\"$lang\"";
+ if ( get_option('html_type') == 'text/html' )
+ $output .= "lang=\"$lang\"";
+ else $output .= "xml:lang=\"$lang\"";
}
echo $output;