I would like get rid of, a minor mistake in HTML5 validation.
In the configuration file, I have:
$phpwcms['mode_XHTML'] = 3; // Doctype: 1 = XHTML 1.0 Transitional, 0 = HTML 4.01 Transitional, 2 = XHTML 1.0 Strict, 3 = HTML5
But on the site: https://html5.validator.nu, I get one error:
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
Error: A meta element with an http-equiv attribute whose value is X-UA-Compatible must have a content attribute with the value IE=edge.
From line 10, column 3; to line 10, column 64
Where can I make a correction?
http://krynica.malopolska.pl/HTML5_validation.png
Regards
Bogdan
HTML5 validation
- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
HTML5 validation
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.
- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
Re: HTML5 validation
OK in line I changed to it's ok
Code: Select all
$phpwcms['X-UA-Compatible'] = 'IE=Edge,chrome=1';
Code: Select all
$phpwcms['X-UA-Compatible'] = 'IE=Edge';
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.
- Oliver Georgi
- Site Admin
- Posts: 9905
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Re: HTML5 validation
It was your older config settings. I have updated default values to
$phpwcms['X-UA-Compatible'] = '';
. There is no need any longer for this meta tag having IE11+. See https://github.com/slackero/phpwcms/com ... 42ca122eec- Chaffinch<
- Posts: 52
- Joined: Mon 30. Mar 2009, 18:36
- Contact:
Re: HTML5 validation
Thank you very much ) I corrected.
Best Regards
Bogdan
Best Regards
Bogdan
Best Regards,
P.S. Sorry for my English or Deutsch.
P.S. Sorry for my English or Deutsch.