Modify content_header() to take mime type and nocache

This commit is contained in:
Miles Lott 2001-04-13 05:21:20 +00:00
parent 713272f9d2
commit fb487058fe

View File

@ -221,7 +221,7 @@
}
// Echo content headers for file downloads
function content_header($fn="")
function content_header($fn="",$mime="application/octetstream",$nocache=True)
{
if ($fn)
{
@ -233,10 +233,16 @@
{
$attachment = " attachment;";
}
// Show this for all
header('Content-disposition:'.$attachment.' filename="'.$fn.'"');
header('Content-type: application/octetstream');
header('Pragma: no-cache');
header('Expires: 0');
header('Content-type: '.$mime);
if ($nocache)
{
header('Pragma: no-cache');
header('Expires: 0');
}
}
}
}