From: Aaron Schulz Date: Fri, 2 Jan 2009 16:27:05 +0000 (+0000) Subject: Specify type here, rather than '' X-Git-Tag: 1.31.0-rc.0~43620 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=e77f92fe3bd3ae40228c969603f612673ada4f78;p=lhc%2Fweb%2Fwiklou.git Specify type here, rather than '' --- diff --git a/includes/HTMLFileCache.php b/includes/HTMLFileCache.php index 833d718dea..ab3c964540 100644 --- a/includes/HTMLFileCache.php +++ b/includes/HTMLFileCache.php @@ -203,7 +203,7 @@ class HTMLFileCache { public static function clearFileCache( $title ) { global $wgUseFileCache; if( !$wgUseFileCache ) return false; - $fc = new self( $title, '' ); + $fc = new self( $title, 'view' ); @unlink( $fc->fileCacheName() ); $fc = new self( $title, 'raw' ); @unlink( $fc->fileCacheName() );