Skip to content

Commit

Permalink
Fix for Bug #2387
Browse files Browse the repository at this point in the history
  • Loading branch information
julmis committed Jan 15, 2005
1 parent 6b9ead4 commit e6f4c5f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/editor/lang/en.php
Expand Up @@ -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
Expand Down

0 comments on commit e6f4c5f

Please sign in to comment.