diff options
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 9783486..92c2418 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -8,7 +8,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.45 1999-10-26 13:36:25 gerald Exp $ +# $Id: check,v 1.46 1999-10-27 20:25:33 gerald Exp $ # # Load modules @@ -29,8 +29,8 @@ use constant UNDEF => undef; # Constant definitions ############################################################################# -my $cvsrevision = '$Revision: 1.45 $'; -my $cvsdate = '$Date: 1999-10-26 13:36:25 $'; +my $cvsrevision = '$Revision: 1.46 $'; +my $cvsdate = '$Date: 1999-10-27 20:25:33 $'; my $logfile = "/var/log/httpd/val-svc"; @@ -615,6 +615,8 @@ if ( $? || $guessed_doctype ) { $newline =~ s/&/&/go; $newline =~ s/</</go; $newline =~ s/${lt}/</g; $newline =~ s/${gt}/>/g; + $newline =~ s/\t/ /g; + $newline =~ s/
//g; print " <li>"; print qq{<a href="#line-$line">} if $q->param('ss'); |