Remove no longer needed Vary: Cookie header to fix IE5.0 caching
authorTom Gilder <tomgilder@users.mediawiki.org>
Thu, 20 Jan 2005 11:28:46 +0000 (11:28 +0000)
committerTom Gilder <tomgilder@users.mediawiki.org>
Thu, 20 Jan 2005 11:28:46 +0000 (11:28 +0000)
includes/RawPage.php

index 41d599f..2c9b8c5 100644 (file)
@@ -75,8 +75,6 @@ class RawPage {
                header( "Content-type: ".$this->mContentType.'; charset='.$this->mCharset );
                # allow the client to cache this for 24 hours
                header( 'Cache-Control: s-maxage='.$this->mSmaxage.', max-age='.$this->mMaxage );
-               # Make sure each logged-in user gets his/her own stylesheet
-               header( 'Vary: Cookie' );
                if($this->mGen) {
                        $sk = $wgUser->getSkin();
                        $sk->initPage($wgOut);