diff options
author | terry%mozilla.org <> | 2000-02-16 03:56:31 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-02-16 03:56:31 +0100 |
commit | b018c7a450aef5c381b320bc6aa2a60d6fa1fdd1 (patch) | |
tree | aeaa569aa2d3993bb441afd1c6346c1495d30a10 | |
parent | a1fe6beadefd384880d1b197cb3adf8b5fb6f282 (diff) | |
download | bugzilla-b018c7a450aef5c381b320bc6aa2a60d6fa1fdd1.tar.gz bugzilla-b018c7a450aef5c381b320bc6aa2a60d6fa1fdd1.tar.xz |
Patches by Ken Jenks <kjenks@abiblion.com> and jug@tellux.de -- make the Javascript behave under IE5 and under Netscape 3.x
-rw-r--r-- | CGI.pl | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -734,7 +734,7 @@ name=PleaseMailAPassword> sub PutHeader { - my ($title, $h1, $h2, $extra, $ignoreshutdown) = (@_); + my ($title, $h1, $h2, $extra, $ignoreshutdown, $jscript) = (@_); if (!defined $h1) { $h1 = $title; @@ -745,9 +745,10 @@ sub PutHeader { if (!defined $extra) { $extra = ""; } + $jscript ||= ""; print "<HTML><HEAD>\n<TITLE>$title</TITLE>\n"; - print Param("headerhtml") . "\n</HEAD>\n"; + print Param("headerhtml") . "\n$jscript\n</HEAD>\n"; print "<BODY BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\"\n"; print "LINK=\"#0000EE\" VLINK=\"#551A8B\" ALINK=\"#FF0000\" $extra>\n"; |