Index: typo3/class.db_list_extra.inc =================================================================== --- typo3/class.db_list_extra.inc (revision 8192) +++ typo3/class.db_list_extra.inc (working copy) @@ -1860,6 +1860,12 @@ class localRecordList extends recordList { $mimeType = 'application/octet-stream'; Header('Content-Type: '.$mimeType); Header('Content-Disposition: attachment; filename='.$filename); + $client = t3lib_div::clientInfo(); + if( ($client['BROWSER'] == 'msie') && ($client['VERSION'] == '6' || $client['VERSION'] == '7' || $client['VERSION'] == '8') ) { + Header('Pragma: cache'); + Header('Expires: 0'); + Header('Cache-Control: private'); + } // Printing the content of the CSV lines: echo implode(chr(13).chr(10),$this->csvLines);