remove space in content type for excel sheet

This commit is contained in:
Uwe Steinmann 2015-07-27 20:54:21 +02:00
parent 5f8cc5f460
commit 572927668a

View File

@ -435,7 +435,7 @@ if(isset($_GET["fullsearch"]) && $_GET["fullsearch"]) {
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . filesize($filename));
header("Content-Disposition: attachment; filename=\"export-" .date('Y-m-d') . ".xls\"");
header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml. sheet");
header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
header("Cache-Control: must-revalidate");
}