bug 458054

This commit is contained in:
Marc Delisle
2001-09-06 00:04:36 +00:00
parent 65362b3fdf
commit 0eaf521951
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2001-09-05 Marc Delisle <lem9@users.sourceforge.net>
* tbl_dump.php3, bug 458074, "transmit not working in IE 5.5":
needed "Content-Disposition: inline"
2001-09-05 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2001-09-05 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* lang/galician.inc.php3: updated thanks to * lang/galician.inc.php3: updated thanks to
Xos<6F> Calvo <xosecalvo at terra.es>. Xos<6F> Calvo <xosecalvo at terra.es>.

View File

@@ -1,7 +1,6 @@
<?php <?php
/* $Id$ */ /* $Id$ */
/** /**
* Formats the INSERT statements depending on the target (screen/file) of the * Formats the INSERT statements depending on the target (screen/file) of the
* sql dump * sql dump
@@ -119,8 +118,9 @@ else {
} }
// Send headers // Send headers
// we need "inline" instead of "attachment" for IE 5.5
header('Content-Type: ' . $mime_type); header('Content-Type: ' . $mime_type);
header('Content-Disposition: attachment; filename="' . $filename . '.' . $ext . '"'); header('Content-Disposition: inline; filename="' . $filename . '.' . $ext . '"');
header('Pragma: no-cache'); header('Pragma: no-cache');
header('Expires: 0'); header('Expires: 0');
} // end download } // end download