diff options
author | link <link@localhost> | 2001-07-19 23:01:01 +0000 |
---|---|---|
committer | link <link@localhost> | 2001-07-19 23:01:01 +0000 |
commit | e3725fe1ebbe97f4d6d2f4faab0188596bf15d14 (patch) | |
tree | 429620f4ba781926f2c88e5869f31f3c49c97152 | |
parent | fb6bce16cfff1b365ee8c504a4ebb842bdd5a4b8 (diff) | |
download | markup-validator-e3725fe1ebbe97f4d6d2f4faab0188596bf15d14.zip markup-validator-e3725fe1ebbe97f4d6d2f4faab0188596bf15d14.tar.gz markup-validator-e3725fe1ebbe97f4d6d2f4faab0188596bf15d14.tar.bz2 |
Killing accumulating URI parameters in query string.
-rwxr-xr-x | httpd/cgi-bin/check | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index f0d04e9..7d78674 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.152 2001-07-19 03:16:14 link Exp $ +# $Id: check,v 1.153 2001-07-19 23:01:01 link Exp $ # # We need Perl 5.004. @@ -80,9 +80,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/'; # # Strings -$VERSION = q$Revision: 1.152 $; +$VERSION = q$Revision: 1.153 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; -$DATE = q$Date: 2001-07-19 03:16:14 $; +$DATE = q$Date: 2001-07-19 23:01:01 $; $MAINTAINER = 'gerald@w3.org'; $NOTICE = ''; # "<p><strong>Note: This service will be ...</strong>"; @@ -643,7 +643,6 @@ sub add_table { sub print_table { my $tableEntry; add_table("Options", - "<input type='hidden' name='uri' value='$File->{URI}'>\n" . ' <input type="checkbox" value="" name="ss"' . ($q->param('ss') ? 'checked="checked"' : '') . " />Show Source\n" . ' <input type="checkbox" value="" name="outline"' . |