diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-25 19:17:27 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-25 19:18:41 +0200 |
commit | d5625ecc541ca56b64d6e96c860272d3eb373034 (patch) | |
tree | f09d613a8bf723199582f0b28afd88b108ef303b | |
parent | 800c5fd043ab23987186bf036562d7ec58fd38d4 (diff) |
Fix more IE issues by disabling Compat. mode with X-UA-Compatible meta tag (#1488626)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | skins/classic/includes/links.html | 1 | ||||
-rw-r--r-- | skins/larry/includes/links.html | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix more IE issues by disabling Compat. mode with X-UA-Compatible meta tag (#1488626) - Fix setting locales under Solaris - use additional .UTF-8 suffix (#1488628) - Fix email address validation for addresses with IP address in domain part - Fix Larry skin issues in IE7 compat. mode (#1488618) diff --git a/skins/classic/includes/links.html b/skins/classic/includes/links.html index 82673220a..6d8d03c52 100644 --- a/skins/classic/includes/links.html +++ b/skins/classic/includes/links.html @@ -1,3 +1,4 @@ +<meta http-equiv="X-UA-Compatible" content="IE=EDGE" /> <link rel="index" href="$__comm_path" /> <link rel="shortcut icon" href="/images/favicon.ico"/> <link rel="stylesheet" type="text/css" href="/common.css" /> diff --git a/skins/larry/includes/links.html b/skins/larry/includes/links.html index 0ddc2e160..8bd8012e1 100644 --- a/skins/larry/includes/links.html +++ b/skins/larry/includes/links.html @@ -1,3 +1,4 @@ +<meta http-equiv="X-UA-Compatible" content="IE=EDGE" /> <link rel="shortcut icon" href="/images/favicon.ico"/> <link rel="stylesheet" type="text/css" href="/styles.css" /> <roundcube:if condition="in_array(env:task, array('mail','addressbook','settings'))" /> |