Bug 276250, Update 1.0 missing cache-control headers. P=Me.

This commit is contained in:
psychoticwolf%carolina.rr.com 2004-12-30 19:49:23 +00:00
Родитель 2e80fb50de
Коммит 36296a224f
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -38,6 +38,17 @@
//inc_global.php -- Stuff that needs to be done globally to all of Mozilla Update
//Cache Control Headers
if ($nocache==TRUE) {
$expstr = gmdate("D, d M Y H:i:s", time() - 1800) . " GMT";
header("Expires: $expstr");
header("Cache-Control: public, max-age=0");
} else {
$expstr = gmdate("D, d M Y H:i:s", time() + 1800) . " GMT";
header("Expires: $expstr");
header("Cache-Control: public, max-age=1800");
}
// ---------------------------
// escape_string() -- Quote a variable to make it safe
// ---------------------------