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:17:27 +0200 |
commit | f1956d738fc1f80fdb38d7f389ed10e7a2970d8a (patch) | |
tree | a8141d78e4771eb095ed2dd6c8b1d8a7a4a55369 | |
parent | 4d1515cb0b43117792a37c03a6ca35ea3ab65eee (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'))" /> |