Remove the now redundant html close tags.

Submitted by:		Daniel Gerzo <danger at rulez dot sk>
This commit is contained in:
Remko Lodder 2005-09-13 18:17:46 +00:00
parent 9e46686368
commit bc343ef2a8
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=25633

View file

@ -1,5 +1,5 @@
#!/usr/bin/perl -T
# $FreeBSD: www/en/cgi/query-pr-summary.cgi,v 1.49 2005/01/18 17:31:12 keramida Exp $
# $FreeBSD: www/en/cgi/query-pr-summary.cgi,v 1.50 2005/09/12 20:30:25 remko Exp $
sub escape($) { $_ = $_[0]; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; $_; }
@ -23,7 +23,6 @@ if ($ENV{'QUERY_STRING'} eq 'query') {
print &html_header("Query $project problem reports");
&displayform;
print &html_footer;
print "</body>\n</html>";
exit(0);
}