Fix for bug 265240: make collectstats generate valid RDF by not cutting off the opening RDF tag; r=kiko, a=myk

This commit is contained in:
myk%mozilla.org 2004-10-20 23:00:45 +00:00
parent 2406b465e5
commit aedb51d8be

View File

@ -103,7 +103,7 @@ CollectSeriesData();
my $headers_done = 0;
while (<CGI>) {
print RDF if $headers_done;
$headers_done = 1 if $_ eq "\n";
$headers_done = 1 if $_ eq "\r\n";
}
close CGI;
close RDF;