summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlink <link@localhost>2001-09-14 02:31:27 +0000
committerlink <link@localhost>2001-09-14 02:31:27 +0000
commit4c8549d31292e846188275be688672d5c8d74ce7 (patch)
tree7771ba554ae43dae2389544f8327855dfb7eff72
parent692631867e1417ad4f64ab12c91382c55e9dee8a (diff)
downloadmarkup-validator-4c8549d31292e846188275be688672d5c8d74ce7.zip
markup-validator-4c8549d31292e846188275be688672d5c8d74ce7.tar.gz
markup-validator-4c8549d31292e846188275be688672d5c8d74ce7.tar.bz2
Add back missing <UL> (where did that get off to?).
-rwxr-xr-xhttpd/cgi-bin/check7
1 files changed, 4 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check
index 7c9a278..2d3c9fc 100755
--- a/httpd/cgi-bin/check
+++ b/httpd/cgi-bin/check
@@ -9,7 +9,7 @@
# This source code is available under the license at:
# http://www.w3.org/Consortium/Legal/copyright-software
#
-# $Id: check,v 1.180 2001-09-14 01:26:36 link Exp $
+# $Id: check,v 1.181 2001-09-14 02:31:27 link Exp $
#
# We need Perl 5.004.
@@ -91,9 +91,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/';
#
# Strings
-$VERSION = q$Revision: 1.180 $;
+$VERSION = q$Revision: 1.181 $;
$VERSION =~ s/Revision: ([\d\.]+) /$1/;
-$DATE = q$Date: 2001-09-14 01:26:36 $;
+$DATE = q$Date: 2001-09-14 02:31:27 $;
$MAINTAINER = 'gerald@w3.org';
$NOTICE = ''; # "<p><strong>Note: This service will be ...</strong>";
@@ -1278,6 +1278,7 @@ sub parse_errors ($$) {
#
# Generate a HTML report of detected errors.
sub report_errors ($) {
+ print '<ul>';
my $File = shift;
foreach my $err (@{$File->{Errors}}) {