Fix: Add cache directive for all export types

This commit is contained in:
Laurent Destailleur 2012-04-04 17:42:50 +02:00
parent a6bbe1032d
commit 5e4af76585

View File

@ -152,9 +152,6 @@ if ($format == 'ical' || $format == 'vcal')
if ($contenttype) header('Content-Type: '.$contenttype.($outputencoding?'; charset='.$outputencoding:''));
if ($attachment) header('Content-Disposition: attachment; filename="'.$shortfilename.'"');
// Ajout directives pour resoudre bug IE
//header('Cache-Control: Public, must-revalidate');
//header('Pragma: public');
if ($cachedelay) header('Cache-Control: max-age='.$cachedelay.', private, must-revalidate');
else header('Cache-Control: private, must-revalidate');
@ -193,6 +190,8 @@ if ($format == 'rss')
// Ajout directives pour resoudre bug IE
//header('Cache-Control: Public, must-revalidate');
//header('Pragma: public');
if ($cachedelay) header('Cache-Control: max-age='.$cachedelay.', private, must-revalidate');
else header('Cache-Control: private, must-revalidate');
// Clean parameters
$outputfile=$conf->agenda->dir_temp.'/'.$filename;