Delete redundant <HR> tag in footer.

This commit is contained in:
Wolfram Schneider 1999-12-25 22:03:12 +00:00
parent 3ef7d65119
commit 8aba7ccfce
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=6281

View file

@ -270,8 +270,8 @@ browse the following categories:\n";
$d =~ s/##([^#]*)##/$catkey{$1}/g;
print OUTF $d;
print OUTF "</DL>\n";
&footer(OUTF, "<HR><A HREF=\"index.html\">Port Categories</A>" .
" -- <A HREF=\"master-index.html\">Index</A><HR>");
&footer(OUTF, "<p></p><A HREF=\"index.html\">Port Categories</A>" .
" -- <A HREF=\"master-index.html\">Index</A>");
close(OUTF);
}
@ -287,7 +287,7 @@ browse the following categories:\n";
print MINDEX "<P>\n";
print MINDEX sort @master;
print MINDEX "</P>";
&footer(MINDEX, "<HR><A HREF=\"index.html\">Port Categories</A><HR>");
&footer(MINDEX, "<A HREF=\"index.html\">Port Categories</A>");
close(MINDEX);
close(INDEX);
}