refetched on every pageload
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10609
7612ce4b-ef26-0410-bec9-
ea0150e637f0
$oTemplate->assign('fontsize', $fontsize);
header('Content-Type: text/css');
+// output a last-modified header if we can
+if ( $lastmod = @filemtime($oTemplate->template_dir . 'stylesheet.tpl') ) {
+ $gmlastmod = gmdate('D, d M Y H:i:s', $lastmod) . ' GMT';
+ header('Last-Modified: ' . $gmlastmod);
+}
$oTemplate->display('stylesheet.tpl');
-?>
\ No newline at end of file
+?>