From 4560ec828cfd27f363f665df40d463619ed35231 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Thu, 25 Mar 1999 06:02:48 +0000 Subject: [PATCH] On re-reading bug 4133, I see that I should just turn off the javascript stuff on all instances of IE. --- query.cgi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/query.cgi b/query.cgi index 3e8ea9e919..b34f87b137 100755 --- a/query.cgi +++ b/query.cgi @@ -232,8 +232,7 @@ $jscript .= q{ function selectProduct(f) { // Apparently, IE4 chokes on the below, so do nothing if running that. var agt=navigator.userAgent.toLowerCase(); - if ((agt.indexOf("msie") != -1) && - (parseInt(navigator.appVersion) == 4)) return; + if ((agt.indexOf("msie") != -1)) return; var cnt = 0; var i; -- 2.47.2