From cff6c941061c2ddd4a57128d3df75313581e1ba0 Mon Sep 17 00:00:00 2001 From: Joshua Ferraro Date: Sat, 24 Nov 2007 21:51:50 -0600 Subject: [PATCH] fix for bug 1373 (add no-cache headers) After experiencing this for myself I've decided to just add them by default, if we want to wrap in a syspref at some point we can. Signed-off-by: Joshua Ferraro --- C4/Output.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Output.pm b/C4/Output.pm index f59648ec46..a9bb3f699d 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -328,6 +328,8 @@ sub output_html_with_http_headers ($$$) { -type => 'text/html', -charset => 'UTF-8', -cookie => $cookie, + -Pragma => 'no-cache', + -'Cache-Control' => 'no-cache', ), $html; } -- 2.39.5