From f577ecb81149d0d09dc846204f17b2153a244b5a Mon Sep 17 00:00:00 2001 From: Igor Nadj Date: Thu, 5 Nov 2015 16:09:16 +1300 Subject: [PATCH] FIX: prevent use cache on browser back button --- control/HTTP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/HTTP.php b/control/HTTP.php index 895c126e9..8a65c1be0 100644 --- a/control/HTTP.php +++ b/control/HTTP.php @@ -384,7 +384,7 @@ class HTTP { // prefer the caching information indicated through the "Cache-Control" header. $responseHeaders["Pragma"] = ""; } else { - $responseHeaders["Cache-Control"] = "no-cache, max-age=0, must-revalidate, no-transform"; + $responseHeaders["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate, no-transform"; } }