diff options
-rwxr-xr-x | httpd/cgi-bin/LinkChecker.pl | 8 | ||||
-rwxr-xr-x | httpd/cgi-bin/checklink.pl | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/httpd/cgi-bin/LinkChecker.pl b/httpd/cgi-bin/LinkChecker.pl index 5ac439b..2b3db38 100755 --- a/httpd/cgi-bin/LinkChecker.pl +++ b/httpd/cgi-bin/LinkChecker.pl @@ -5,7 +5,7 @@ # (c) 1999-2000 World Wide Web Consortium # based on Renaud Bruyeron's checklink.pl # -# $Id: LinkChecker.pl,v 1.28 2000-02-08 21:48:34 hugo Exp $ +# $Id: LinkChecker.pl,v 1.29 2000-02-08 23:11:20 hugo Exp $ # # This program is licensed under the W3C(r) License. # @@ -29,7 +29,7 @@ $| = 1; # Version info my $PROGRAM = 'W3C LinkChecker'; -my $VERSION = q$Revision: 1.28 $ . '(c) 1999-2000 W3C'; +my $VERSION = q$Revision: 1.29 $ . '(c) 1999-2000 W3C'; my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/; # State of the program @@ -78,7 +78,7 @@ if ($#ARGV >= 0) { $_summary = 1; } else { } - if (! $query->param('redirects')) { + if ($query->param('hide_redirects')) { $_redirects = 0; } $_html = 1; @@ -1183,7 +1183,7 @@ sub print_form() { <p> <input type=\"checkbox\" name=\"summary\"> Summary only - <input type=\"checkbox\" name=\"redirects\" checked> Show redirects + <input type=\"checkbox\" name=\"hide_redirects\"> Hide redirects </p> <p><input type=\"submit\" name=\"submit\" value=\"Check\"></p> </form> diff --git a/httpd/cgi-bin/checklink.pl b/httpd/cgi-bin/checklink.pl index 243444d..a0ec665 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.28 2000-02-08 21:48:34 hugo Exp $ +# $Id: checklink.pl,v 2.29 2000-02-08 23:11:20 hugo Exp $ # # This program is licensed under the W3C(r) License. # @@ -29,7 +29,7 @@ $| = 1; # Version info my $PROGRAM = 'W3C checklink'; -my $VERSION = q$Revision: 2.28 $ . '(c) 1999-2000 W3C'; +my $VERSION = q$Revision: 2.29 $ . '(c) 1999-2000 W3C'; my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/; # State of the program @@ -78,7 +78,7 @@ if ($#ARGV >= 0) { $_summary = 1; } else { } - if (! $query->param('redirects')) { + if ($query->param('hide_redirects')) { $_redirects = 0; } $_html = 1; @@ -1183,7 +1183,7 @@ sub print_form() { <p> <input type=\"checkbox\" name=\"summary\"> Summary only - <input type=\"checkbox\" name=\"redirects\" checked> Show redirects + <input type=\"checkbox\" name=\"hide_redirects\"> Hide redirects </p> <p><input type=\"submit\" name=\"submit\" value=\"Check\"></p> </form> |