Allow normal themes to be used with IE >= 10

This commit is contained in:
kytv
2013-05-30 01:39:07 +00:00
parent 3d42946ff5
commit 535c782b7c
3 changed files with 5 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public class CSSHelper extends HelperBase {
public String getTheme(String userAgent) {
String url = BASE_THEME_PATH;
if (userAgent != null && userAgent.contains("MSIE")) {
if (userAgent != null && (userAgent.contains("MSIE") && !userAgent.contains("Trident/6"))) {
url += FORCE + "/";
} else {
// This is the first thing to use _context on most pages