From 49a4efcfa0da3f54fda6aa8fa98beffa31e1c91f Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sat, 30 Nov 2013 17:53:42 +0000 Subject: [PATCH] Don't offer iD on IE11 --- app/controllers/application_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 7754f72fd..3830df88b 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -431,7 +431,7 @@ class ApplicationController < ActionController::Base DEFAULT_EDITOR end - if request.env['HTTP_USER_AGENT'] =~ /MSIE/ and editor == 'id' + if request.env['HTTP_USER_AGENT'] =~ /MSIE|Trident/ and editor == 'id' editor = 'potlatch2' end -- 2.43.2