diff --git a/ChangeLog b/ChangeLog index 849a4109b..1d4494d23 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2005-07-26 Michal Čihař + * export.php: Use actual MIME type for CSV. + 2005-07-25 Marc Delisle * tbl_change.php: insert another new row: dropdown choice should be sticky diff --git a/export.php b/export.php index 0ed600a96..fb9317906 100644 --- a/export.php +++ b/export.php @@ -212,7 +212,7 @@ if ($asfile) { // Generate basic dump extension if ($type == 'csv') { $filename .= '.csv'; - $mime_type = 'text/x-comma-separated-values'; + $mime_type = 'text/comma-separated-values'; } else if ($type == 'htmlexcel') { $filename .= '.xls'; $mime_type = 'application/vnd.ms-excel';