diff options
author | wurblzap%gmail.com <> | 2007-08-29 14:09:26 +0200 |
---|---|---|
committer | wurblzap%gmail.com <> | 2007-08-29 14:09:26 +0200 |
commit | 1307c96e9e04e46a43fe1f5c7bac06e9d347ff08 (patch) | |
tree | 8a67eebfc1518b3c704edd1f52b6c3fe33d0b616 | |
parent | 612e341989f1b34788259f2ae4c838ca0e08afee (diff) | |
download | bugzilla-1307c96e9e04e46a43fe1f5c7bac06e9d347ff08.tar.gz bugzilla-1307c96e9e04e46a43fe1f5c7bac06e9d347ff08.tar.xz |
Bug 356807 â CSV export expose text/plain as MIME content type.
Patch by David Geldreich <david.geldreich@free.fr>;
r=LpSolit, vladd; a=mkanat
-rw-r--r-- | Bugzilla/Constants.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index a05bbc24c..a5fbba61d 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -221,7 +221,7 @@ use constant contenttypes => "atom"=> "application/atom+xml" , "xml" => "application/xml" , "js" => "application/x-javascript" , - "csv" => "text/plain" , + "csv" => "text/csv" , "png" => "image/png" , "ics" => "text/calendar" , }; |