Projet

Général

Profil

0001-templates-limit-X-UA-Compatible-to-authorized-IE-edg.patch

Frédéric Péters, 10 juillet 2019 17:38

Télécharger (1,7 ko)

Voir les différences:

Subject: [PATCH] templates: limit X-UA-Compatible to authorized IE=edge value
 (#34744)

 templates/theme.html                      | 2 +-
 templates/variants/montpellier/theme.html | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
templates/theme.html
3 3
<html {% if LANGUAGE_CODE %}lang="{{ LANGUAGE_CODE }}"{% endif %} {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
4 4
  <head>
5 5
    <meta charset="UTF-8"><!-- 🔥 -->
6
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
6
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
7 7
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8 8
    <title>{% firstof global_title site_title "Compte Citoyen" %} {% block title %}{% endblock %}</title>
9 9
    {% if meta_robots %}
templates/variants/montpellier/theme.html
3 3
<html>
4 4
  <head>
5 5
    <meta charset="UTF-8"><!-- 🔥 -->
6
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
6
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
7 7
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8 8
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
9 9
    <meta http-equiv="content-language" content="fr" />
10
-