diff --git a/CHANGELOG b/CHANGELOG
index f749160..3fa1678 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,6 +5,7 @@ Prevent posting the same message twice, if no other message was posted in-betwee
Instruct browser not to send referrer.
Enable image embedding without cookies as there is no more risk of session leakage.
Allow configuring password and nickname regex
+Prevent browser from caching at all.
Version 1.20.6 - Jul. 23, 2016
Simplify ignore logic + disallow ignoring chatters with higher status
diff --git a/chat.php b/chat.php
index e9af79b..0eca04e 100644
--- a/chat.php
+++ b/chat.php
@@ -3087,7 +3087,7 @@ function sort_names(&$names){
function send_headers(){
header('Content-Type: text/html; charset=UTF-8');
header('Pragma: no-cache');
- header('Cache-Control: no-cache');
+ header('Cache-Control: no-cache, no-store, must-revalidate, max-age=0');
header('Expires: 0');
header('Referrer-Policy: no-referrer');
header('Content-Security-Policy: referrer never');
@@ -3688,7 +3688,7 @@ function load_html(){
global $H, $I, $language;
$H=array(// default HTML
'form' =>"form action=\"$_SERVER[SCRIPT_NAME]\" method=\"post\"",
- 'meta_html' =>'',
+ 'meta_html' =>'',
'credit' =>'
LE CHAT-PHP - ' . VERSION . '',
'commonform' =>hidden('lang', $language).hidden('nc', substr(time(), -6))
);