From b50ddb431c7dcc0ce21a963c5140c6c7f5f8398d Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Thu, 21 Oct 2004 06:00:45 +0000 Subject: Fix for bug 265240: make collectstats generate valid RDF by not cutting off the opening RDF tag; r=kiko, a=myk --- collectstats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'collectstats.pl') diff --git a/collectstats.pl b/collectstats.pl index c1c269b94..23d01bbc4 100755 --- a/collectstats.pl +++ b/collectstats.pl @@ -103,7 +103,7 @@ CollectSeriesData(); my $headers_done = 0; while () { print RDF if $headers_done; - $headers_done = 1 if $_ eq "\n"; + $headers_done = 1 if $_ eq "\r\n"; } close CGI; close RDF; -- cgit v1.2.3-24-g4f1b