diff options
author | myk%mozilla.org <> | 2004-10-21 08:00:45 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2004-10-21 08:00:45 +0200 |
commit | b50ddb431c7dcc0ce21a963c5140c6c7f5f8398d (patch) | |
tree | bdbc44ff88f812840a9ceaffb19d45d82f967501 | |
parent | f99b43776ab0b59707b809202b199b185ee770c3 (diff) | |
download | bugzilla-b50ddb431c7dcc0ce21a963c5140c6c7f5f8398d.tar.gz bugzilla-b50ddb431c7dcc0ce21a963c5140c6c7f5f8398d.tar.xz |
Fix for bug 265240: make collectstats generate valid RDF by not cutting off the opening RDF tag; r=kiko, a=myk
-rwxr-xr-x | collectstats.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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 (<CGI>) { print RDF if $headers_done; - $headers_done = 1 if $_ eq "\n"; + $headers_done = 1 if $_ eq "\r\n"; } close CGI; close RDF; |