From 50c581a65c11ab98a4cd901e55c4f4a017329251 Mon Sep 17 00:00:00 2001 From: John Dong Date: Thu, 30 Aug 2007 13:36:23 -0400 Subject: [PATCH] Expand coverage of IE regex to cover all versions 5-6 --- app/views/layouts/main.rhtml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/layouts/main.rhtml b/app/views/layouts/main.rhtml index 5836b4f..74ad018 100644 --- a/app/views/layouts/main.rhtml +++ b/app/views/layouts/main.rhtml @@ -5,7 +5,8 @@ <%= stylesheet_link_tag "common", :media => "all" %> <%= stylesheet_link_tag "main", :media => "all" %> <%= stylesheet_link_tag *(@stylesheets) %> - <%= stylesheet_link_tag "ie6hacks", :media => "all" if request.user_agent =~ /MSIE 6/ %> + <%= stylesheet_link_tag "ie6hacks", :media => "all" if \ + request.user_agent =~ /msie\s(5\.[5-9]|[6]\.[0-9]*).*(win)/i %> <%= javascript_include_tag "prototype", "effects", "dragdrop", "controls" %> -- 2.30.2