diff options
author | ville <ville@localhost> | 2009-11-28 21:55:25 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-11-28 21:55:25 +0000 |
commit | 7a1f9249f02803bf97bda2eea287b86589515256 (patch) | |
tree | e1443490694d3c6325ff80602d58282fe56c1b58 /httpd/cgi-bin/check | |
parent | 000c8e75dab17fcd4dba2a23f32e372624cc3fe5 (diff) | |
download | markup-validator-7a1f9249f02803bf97bda2eea287b86589515256.zip markup-validator-7a1f9249f02803bf97bda2eea287b86589515256.tar.gz markup-validator-7a1f9249f02803bf97bda2eea287b86589515256.tar.bz2 |
Don't disable stdout buffering; it no longer matters since we're
printing everything in one go from templates anyway.
Diffstat (limited to 'httpd/cgi-bin/check')
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 479a82a..b362672 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.737 2009-11-28 21:52:30 ville Exp $ +# $Id: check,v 1.738 2009-11-28 21:55:25 ville Exp $ # # We need Perl 5.8.0+. @@ -30,10 +30,6 @@ use strict; use warnings; use utf8; -# -# Disable buffering on STDOUT! -$| = 1; - package W3C::Validator::MarkupValidator; # @@ -199,7 +195,7 @@ EOF # # Strings - $VERSION = q$Revision: 1.737 $; + $VERSION = q$Revision: 1.738 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # |