зеркало из https://github.com/mozilla/pjs.git
Bug 276250, Update 1.0 missing cache-control headers. P=Me.
This commit is contained in:
Родитель
2e80fb50de
Коммит
36296a224f
|
@ -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
|
||||
// ---------------------------
|
||||
|
|
Загрузка…
Ссылка в новой задаче