aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--includes/RawPage.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/RawPage.php b/includes/RawPage.php
index faf27262681d..09b6b6664a91 100644
--- a/includes/RawPage.php
+++ b/includes/RawPage.php
@@ -19,6 +19,7 @@ class RawPage {
}
function view() {
header( "Content-type: ".$this->mContentType.'; charset='.$this->mCharset );
+ header( 'Cache-Control: s-maxage=0, max-age=2678400' );
echo $this->getrawtext();
wfAbruptExit();
}