mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 08:09:41 +00:00
HTML Compliance - Attribute "content" value on Element <meta>
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. The "Chrome=1" value was used to spawn Chrome Frame in IE 6,7,8,9. However, "Google Chrome Frame was discontinued in January 2014", and think all IE<11 is beyond EOL. So is this even needed/useful? If needed/useful it would probably be better to support deployment by HTTP headers method instead. Google Chrome Frame https://en.wikipedia.org/wiki/Google_Chrome_Frame
This commit is contained in:
parent
573612d48e
commit
f509437f84
@ -356,7 +356,7 @@ function display_error_form($http_code, $desc)
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<meta name="robots" content="noindex, nofollow, noodp, noydir" />
|
||||
<meta name="keywords" content="" />
|
||||
@ -424,7 +424,7 @@ function display_login_form($Login_Error)
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<meta name="robots" content="noindex, nofollow, noodp, noydir" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<meta name="robots" content="noindex, nofollow, noodp, noydir" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<meta name="robots" content="noindex, nofollow, noodp, noydir" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
@ -34,7 +34,7 @@ $pagetitle .= html_safe(sprintf(' | %s.%s', $config['system']['hostname'], $conf
|
||||
<!--[if (gt IE 9)|!(IE)]><!--><html lang="<?=system_get_language_code();?>" class="no-js"><!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<meta name="robots" content="noindex, nofollow, noodp, noydir" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user