Use new function for download headers

This commit is contained in:
Michal Čihař 2011-08-04 14:29:56 +02:00
parent d6c2dfb51b
commit 1a5154bd87

View File

@ -61,16 +61,17 @@ if ($cfgRelation['commwork'] && $cfgRelation['mimework']) {
require_once './libraries/header_http.inc.php';
// [MIME]
if (isset($ct) && !empty($ct)) {
$content_type = 'Content-Type: ' . $ct;
$mime_type = $ct;
} else {
$content_type = 'Content-Type: ' . (isset($mime_map[$transform_key]['mimetype']) ? str_replace('_', '/', $mime_map[$transform_key]['mimetype']) : $default_ct) . (isset($mime_options['charset']) ? $mime_options['charset'] : '');
$mime_type = (isset($mime_map[$transform_key]['mimetype']) ? str_replace('_', '/', $mime_map[$transform_key]['mimetype']) : $default_ct) . (isset($mime_options['charset']) ? $mime_options['charset'] : '');
}
header($content_type);
if (isset($cn) && !empty($cn)) {
header('Content-Disposition: attachment; filename=' . $cn);
if (empty($cn)) {
$cn = 'download.bin';
}
PMA_download_header($mime_type, $cn);
if (! isset($resize)) {
echo $row[$transform_key];
} else {