Fix doc comment, sigh

This commit is contained in:
Aaron Schulz 2008-12-28 15:17:21 +00:00
parent ba77d25db2
commit 43c6f33ddb
2 changed files with 4 additions and 3 deletions

View file

@ -131,7 +131,8 @@ class HTMLFileCache {
wfDebug(" loadFromFileCache()\n");
$filename = $this->fileCacheName();
// Raw pages will handle control on their own
// Raw pages should handle cache control on their own,
// even when using file cache. This reduces hits from clients.
if( $this->mType !== 'raw' )
$wgOut->sendCacheControl();

View file

@ -75,8 +75,8 @@ if( $wgUseAjax && $action == 'ajax' ) {
if( $wgUseFileCache && isset($wgTitle) ) {
wfProfileIn( 'main-try-filecache' );
// Raw pages should handle control on their own
// even when using file cache.
// Raw pages should handle cache control on their own,
// even when using file cache. This reduces hits from clients.
if( $action != 'raw' && HTMLFileCache::useFileCache() ) {
/* Try low-level file cache hit */
$cache = new HTMLFileCache( $wgTitle, $action );