Fix doc comment, sigh
This commit is contained in:
parent
ba77d25db2
commit
43c6f33ddb
2 changed files with 4 additions and 3 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue