bug 458054
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$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>
|
||||
* lang/galician.inc.php3: updated thanks to
|
||||
Xos<6F> Calvo <xosecalvo at terra.es>.
|
||||
|
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
|
||||
/**
|
||||
* Formats the INSERT statements depending on the target (screen/file) of the
|
||||
* sql dump
|
||||
@@ -119,8 +118,9 @@ else {
|
||||
}
|
||||
|
||||
// Send headers
|
||||
// we need "inline" instead of "attachment" for IE 5.5
|
||||
header('Content-Type: ' . $mime_type);
|
||||
header('Content-Disposition: attachment; filename="' . $filename . '.' . $ext . '"');
|
||||
header('Content-Disposition: inline; filename="' . $filename . '.' . $ext . '"');
|
||||
header('Pragma: no-cache');
|
||||
header('Expires: 0');
|
||||
} // end download
|
||||
|
Reference in New Issue
Block a user