From: Tim Starling Date: Wed, 17 Jun 2009 08:18:10 +0000 (+0000) Subject: Fix incorrect method call from r52024. X-Git-Tag: 1.31.0-rc.0~41332 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=8155f2b0e68c2e1244b81f06bd74540047276857;p=lhc%2Fweb%2Fwiklou.git Fix incorrect method call from r52024. --- diff --git a/includes/filerepo/File.php b/includes/filerepo/File.php index 13dc007154..594aae2f1d 100644 --- a/includes/filerepo/File.php +++ b/includes/filerepo/File.php @@ -1077,7 +1077,7 @@ abstract class File { if ( $renderUrl ) { if ( $this->repo->descriptionCacheExpiry > 0 ) { wfDebug("Attempting to get the description from cache..."); - $key = $this->getLocalCacheKey( 'RemoteFileDescription', 'url', $wgContLang->getCode(), + $key = $this->repo->getLocalCacheKey( 'RemoteFileDescription', 'url', $wgContLang->getCode(), $this->getName() ); $obj = $wgMemc->get($key); if ($obj) {