diff options
author | ot <ot@localhost> | 2006-11-01 02:03:05 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2006-11-01 02:03:05 +0000 |
commit | 1a321e3998b63ccd85bb12fa2f69a6eb5444a6c1 (patch) | |
tree | ad2fd51b843fc3b9126dda878db3eb5cc89a0827 | |
parent | 87f59b7e9d35f87a04fa767472ecc0d24c78956a (diff) | |
download | markup-validator-1a321e3998b63ccd85bb12fa2f69a6eb5444a6c1.zip markup-validator-1a321e3998b63ccd85bb12fa2f69a6eb5444a6c1.tar.gz markup-validator-1a321e3998b63ccd85bb12fa2f69a6eb5444a6c1.tar.bz2 |
workaround for bug #798 (apparently in s:p:o 0.99)
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 2b181e6..39dd8fe 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -14,7 +14,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.464 2006-10-12 04:30:49 ot Exp $ +# $Id: check,v 1.465 2006-11-01 02:03:05 ot Exp $ # # Disable buffering on STDOUT! @@ -180,7 +180,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.464 $; + $VERSION = q$Revision: 1.465 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -589,6 +589,10 @@ sub parse (\$) { if (&is_xml($File)) { $catalog = File::Spec->catfile($CFG->{Paths}->{SGML}->{Library}, 'xml.soc'); push(@spopt, 'xml'); + # workaround for a bug in s:p:o 0.99 + # see http://www.w3.org/Bugs/Public/show_bug.cgi?id=798#c5 + push(@spopt, 'xml'); + # FIXME when fixed s:p:o gets released } # |