]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 265240: make collectstats generate valid RDF by not cutting off the openi...
authormyk%mozilla.org <>
Thu, 21 Oct 2004 06:00:45 +0000 (06:00 +0000)
committermyk%mozilla.org <>
Thu, 21 Oct 2004 06:00:45 +0000 (06:00 +0000)
collectstats.pl

index c1c269b94ac19cc44c0aaec5e98a8b03da23e18c..23d01bbc42677b8c1f386fc9ea762b0006f41638 100755 (executable)
@@ -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;