diff options
author | terry%netscape.com <> | 1999-03-25 07:02:48 +0100 |
---|---|---|
committer | terry%netscape.com <> | 1999-03-25 07:02:48 +0100 |
commit | 4560ec828cfd27f363f665df40d463619ed35231 (patch) | |
tree | ae50f1aee79645404269d6a989d817752ab62fb6 /query.cgi | |
parent | 889ac60beb371ebd0fe5e239a2848c850f8faa6f (diff) | |
download | bugzilla-4560ec828cfd27f363f665df40d463619ed35231.tar.gz bugzilla-4560ec828cfd27f363f665df40d463619ed35231.tar.xz |
On re-reading bug 4133, I see that I should just turn off the
javascript stuff on all instances of IE.
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |