Commit d8579a04 authored by terry%netscape.com's avatar terry%netscape.com

Patch by jay@invengen.com -- fixed bug 4106 (was busting on IE).

parent 09a62e44
...@@ -197,6 +197,9 @@ my $jscript = << 'ENDSCRIPT'; ...@@ -197,6 +197,9 @@ my $jscript = << 'ENDSCRIPT';
<!-- <!--
var cpts = new Array(); var cpts = new Array();
var vers = new Array(); var vers = new Array();
// Apparently, IE4 chokes on the below, so do nothing if running that.
var agt=navigator.userAgent.toLowerCase();
if ((agt.indexOf("msie") == -1)) {
ENDSCRIPT ENDSCRIPT
...@@ -227,6 +230,7 @@ for $p (@::legal_product) { ...@@ -227,6 +230,7 @@ for $p (@::legal_product) {
$i = 0; $i = 0;
$jscript .= q{ $jscript .= q{
\} // end IE4 choke around
// Only display versions/components valid for selected product(s) // Only display versions/components valid for selected product(s)
function selectProduct(f) { function selectProduct(f) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment