diff options
-rwxr-xr-x | httpd/cgi-bin/checklink.pl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/httpd/cgi-bin/checklink.pl b/httpd/cgi-bin/checklink.pl index 4031f7a..f01451e 100755 --- a/httpd/cgi-bin/checklink.pl +++ b/httpd/cgi-bin/checklink.pl @@ -5,7 +5,7 @@ # (c) 1999-2000 World Wide Web Consortium # based on Renaud Bruyeron's checklink.pl # -# $Id: checklink.pl,v 2.62 2000-08-04 23:20:43 hugo Exp $ +# $Id: checklink.pl,v 2.63 2000-08-05 14:46:58 hugo Exp $ # # This program is licensed under the W3C(r) License: # http://www.w3.org/Consortium/Legal/copyright-software @@ -34,7 +34,7 @@ $| = 1; # Version info my $PROGRAM = 'W3C checklink'; -my $VERSION = q$Revision: 2.62 $ . '(c) 1999-2000 W3C'; +my $VERSION = q$Revision: 2.63 $ . '(c) 1999-2000 W3C'; my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/; # Different options specified by the user @@ -899,6 +899,9 @@ sub W3C::CheckLink::start() { if ($tag eq 'object') { $self->add_link($attr->{data}); } + if ($tag eq 'blockquote') { + $self->add_link($attr->{cite}); + } } # Line counting |