bug #1116026, export under IE 6 (XP SP2)

This commit is contained in:
Marc Delisle
2005-07-12 20:31:36 +00:00
parent 6c92b913ef
commit a3cc57896d
2 changed files with 8 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ $Source$
2005-07-12 Marc Delisle <lem9@users.sourceforge.net>
* sql.php: for Insert row and Export, use post when the query is too big
* export.php: bug #1116026, export under IE 6 (XP SP2)
2005-07-11 Marc Delisle <lem9@users.sourceforge.net>
* tbl_relations.php: bug #1227710, unsaved relations lost when changing

View File

@@ -308,15 +308,13 @@ if (!$save_on_server) {
}
header('Content-Type: ' . $mime_type);
header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT');
// lem9 & loic1: IE need specific headers
if (PMA_USR_BROWSER_AGENT == 'IE') {
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
} else {
// lem9: Tested behavior of
// IE 5.50.4807.2300
// IE 6.0.2800.1106 (small glitch, asks twice when I click Open)
// IE 6.0.2900.2180
// Firefox 1.0.4
header('Content-Disposition: attachment; filename="' . $filename . '"');
header('Pragma: no-cache');
}
} else {
// HTML
$backup_cfgServer = $cfg['Server'];