Fix s-max-age to s-maxage
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Sat, 11 Sep 2010 09:18:51 +0000 (09:18 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Sat, 11 Sep 2010 09:18:51 +0000 (09:18 +0000)
includes/AjaxResponse.php

index 22b33a4..014798f 100644 (file)
@@ -125,7 +125,7 @@ class AjaxResponse {
 
                                # Let the client do the caching. Cache is not purged.
                                header ( "Expires: " . gmdate( "D, d M Y H:i:s", time() + $this->mCacheDuration ) . " GMT" );
-                               header ( "Cache-Control: s-max-age={$this->mCacheDuration},public,max-age={$this->mCacheDuration}" );
+                               header ( "Cache-Control: s-maxage={$this->mCacheDuration},public,max-age={$this->mCacheDuration}" );
                        }
 
                } else {