diff options
author | link <link@localhost> | 2002-10-25 18:41:46 +0000 |
---|---|---|
committer | link <link@localhost> | 2002-10-25 18:41:46 +0000 |
commit | 992c0af3c7452967bcab0613601f37fd3b954185 (patch) | |
tree | 4f9ac3c0a7ef0734038f23772c76a2f4ce98e520 | |
parent | eccb5afd6cba7874947890e86fca427bb3b1d410 (diff) | |
download | markup-validator-992c0af3c7452967bcab0613601f37fd3b954185.zip markup-validator-992c0af3c7452967bcab0613601f37fd3b954185.tar.gz markup-validator-992c0af3c7452967bcab0613601f37fd3b954185.tar.bz2 |
Add "lang" attribute (in addition to "xml:lang") to sample markup.
Thanks to Bjoern Hoehrmann.
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 0a42a0a..88afa20 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -9,7 +9,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.262 2002-10-25 17:39:09 link Exp $ +# $Id: check,v 1.263 2002-10-25 18:41:46 link Exp $ # # Disable buffering on STDOUT! @@ -95,7 +95,7 @@ BEGIN { # # Strings - $VERSION = q$Revision: 1.262 $; + $VERSION = q$Revision: 1.263 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; @@ -157,7 +157,7 @@ $File->{'Header'} = &prepSSI({ }); $File->{'Footer'} = &prepSSI({ File => $CFG->{'Footer'}, - Date => q$Date: 2002-10-25 17:39:09 $, + Date => q$Date: 2002-10-25 18:41:46 $, }); # @@ -927,7 +927,7 @@ sub doctype_spiel { <pre> <!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" xml:lang="en"> + <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>Title</title> </head> |