From: myk%mozilla.org <> Date: Thu, 21 Oct 2004 06:00:45 +0000 (+0000) Subject: Fix for bug 265240: make collectstats generate valid RDF by not cutting off the openi... X-Git-Tag: bugzilla-2.18rc3~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07953ab877e9aeb2db0609c448a1d604a25b09b7;p=thirdparty%2Fbugzilla.git Fix for bug 265240: make collectstats generate valid RDF by not cutting off the opening RDF tag; r=kiko, a=myk --- diff --git a/collectstats.pl b/collectstats.pl index c1c269b94a..23d01bbc42 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;