Patches by Ken Jenks <kjenks@abiblion.com> and jug@tellux.de -- make the Javascript behave under IE5 and under Netscape 3.x

This commit is contained in:
terry%mozilla.org 2000-02-15 18:56:31 +00:00
Родитель dfa96df892
Коммит b9a6025e36
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -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";