From 8155f2b0e68c2e1244b81f06bd74540047276857 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 17 Jun 2009 08:18:10 +0000 Subject: [PATCH] Fix incorrect method call from r52024. --- includes/filerepo/File.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.20.1