c01a34dcad
Use <!DOCTYPE html> for HTML 4.01 strict and add lang attribute to the html tag for W3C validation compliance. PR: 270453 Submitted by: dvl@FreeBSD.org Approved by: dvl@FreeBSD.org (maintainer timeout)
11 lines
319 B
PHP
11 lines
319 B
PHP
--- HTML/Page2.php.orig 2023-03-25 19:41:07 UTC
|
|
+++ HTML/Page2.php
|
|
@@ -1647,6 +1647,7 @@ class HTML_Page2 extends HTML_Common
|
|
$strHtml .= ' profile="'.$this->_profile.'"';
|
|
}
|
|
|
|
+ $strHtml .= ' lang="' . $this->_language . '"';
|
|
$strHtml .= '>' . $lnEnd;
|
|
|
|
}
|