summaryrefslogtreecommitdiffstats
path: root/httpd/cgi-bin/LinkChecker.pl
diff options
context:
space:
mode:
authorhugo <hugo@localhost>2000-01-20 21:59:30 +0000
committerhugo <hugo@localhost>2000-01-20 21:59:30 +0000
commitc1926bfcb4dca2121a94ae6f998b42a40cc5df71 (patch)
tree66b2b2801d57285dc2f0af6f0d0a7c46d08943bf /httpd/cgi-bin/LinkChecker.pl
parent00656f33dd3ed8d0dd28e1cf255a1aa5677c71a7 (diff)
downloadmarkup-validator-c1926bfcb4dca2121a94ae6f998b42a40cc5df71.zip
markup-validator-c1926bfcb4dca2121a94ae6f998b42a40cc5df71.tar.gz
markup-validator-c1926bfcb4dca2121a94ae6f998b42a40cc5df71.tar.bz2
Fixed escaped URI's problem
Diffstat (limited to 'httpd/cgi-bin/LinkChecker.pl')
-rwxr-xr-xhttpd/cgi-bin/LinkChecker.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd/cgi-bin/LinkChecker.pl b/httpd/cgi-bin/LinkChecker.pl
index e0188ac..2a5715b 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.16 2000-01-20 21:40:05 hugo Exp $
+# $Id: LinkChecker.pl,v 1.17 2000-01-20 21:59:30 hugo Exp $
#
# This program is licensed under the W3C License.
@@ -21,7 +21,7 @@ $| = 1;
# Version info
my $PROGRAM = 'W3C LinkChecker';
-my $VERSION = q$Revision: 1.16 $ . '(c) 1999-2000 W3C';
+my $VERSION = q$Revision: 1.17 $ . '(c) 1999-2000 W3C';
my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/;
# State of the program
@@ -192,7 +192,7 @@ sub ask_password() {
sub urize() {
use URI;
- $_ = $_[0];
+ $_ = URI::Escape::uri_unescape($_[0]);
my $base;
my $res = $_;
if (m/:/) {