summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorduerst <duerst@localhost>2001-06-28 09:53:26 +0000
committerduerst <duerst@localhost>2001-06-28 09:53:26 +0000
commit012ba556565fd1a4ac9fb811bca818ca7ca9be13 (patch)
treeff344ad41423cc6f8a6bf6899d86eb89ca389b40
parentbf1ad9f59796901a59b3550b4b8e8a19c3addb2a (diff)
downloadmarkup-validator-012ba556565fd1a4ac9fb811bca818ca7ca9be13.zip
markup-validator-012ba556565fd1a4ac9fb811bca818ca7ca9be13.tar.gz
markup-validator-012ba556565fd1a4ac9fb811bca818ca7ca9be13.tar.bz2
removed an exception for us-ascii
-rwxr-xr-xhttpd/cgi-bin/check8
1 files changed, 4 insertions, 4 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check
index f212430..e7514d9 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.134 2001-06-27 08:50:58 duerst Exp $
+# $Id: check,v 1.135 2001-06-28 09:53:26 duerst Exp $
#
# We need Perl 5.004.
@@ -80,9 +80,9 @@ my $element_ref = 'http://www.htmlhelp.com/reference/html40/';
#
# Strings
-$VERSION = q$Revision: 1.134 $;
+$VERSION = q$Revision: 1.135 $;
$VERSION =~ s/Revision: ([\d\.]+) /$1/;
-$DATE = q$Date: 2001-06-27 08:50:58 $;
+$DATE = q$Date: 2001-06-28 09:53:26 $;
$MAINTAINER = 'gerald@w3.org';
$NOTICE = ''; # "<p><strong>Note: This service will be ...</strong>";
@@ -318,7 +318,7 @@ if ($File->{HTTP_Charset}) {
#
# Setup SP environment for the charset.
-if ($File->{Charset} ne 'unknown' and $File->{Charset} ne 'us-ascii') {
+if ($File->{Charset} ne 'unknown') {
$ENV{SP_CHARSET_FIXED} = 'YES';
$ENV{SP_ENCODING} = 'utf-8';
}