From e6f4c5feb4a898703deb271a2bcd3b0297917d05 Mon Sep 17 00:00:00 2001
From: julmis <julmis>
Date: Sat, 15 Jan 2005 18:33:03 +0000
Subject: [PATCH] Fix for Bug #2387

---
 lib/editor/lang/en.php | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/editor/lang/en.php b/lib/editor/lang/en.php
index dc0ef6eabd..6624b909c1 100644
--- a/lib/editor/lang/en.php
+++ b/lib/editor/lang/en.php
@@ -6,8 +6,9 @@
     header("Content-type: application/x-javascript");  // Correct MIME type
     header("Last-Modified: " . gmdate("D, d M Y H:i:s", $lastmodified) . " GMT");
     header("Expires: " . gmdate("D, d M Y H:i:s", time() + $lifetime) . " GMT");
-    header("Cache-control: max_age = $lifetime");
-    header("Pragma: ");
+    // See Bug #2387
+    header("Cache-control: max_age = -1");
+    header("Pragma: no-cache");
 
 ?>
 // I18N constants
-- 
2.39.5