From: Aaron Date: Wed, 11 Apr 2012 19:02:20 +0000 (-0700) Subject: Fixed missing argument to pingExpensiveCache() call. X-Git-Tag: 1.31.0-rc.0~23931 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=26ab914aa990b5caf8ece7aca5857c9146e603a0;p=lhc%2Fweb%2Fwiklou.git Fixed missing argument to pingExpensiveCache() call. Change-Id: If3cf56e9cc804388cf3396e8ab15cae2f80de828 --- diff --git a/includes/filerepo/backend/FileBackendStore.php b/includes/filerepo/backend/FileBackendStore.php index 8c849cad02..55dedc1e05 100644 --- a/includes/filerepo/backend/FileBackendStore.php +++ b/includes/filerepo/backend/FileBackendStore.php @@ -579,7 +579,7 @@ abstract class FileBackendStore extends FileBackend { wfProfileIn( __METHOD__ . '-' . $this->name ); $path = $params['src']; if ( isset( $this->expensiveCache[$path]['localRef'] ) ) { - $this->pingExpensiveCache(); + $this->pingExpensiveCache( $path ); wfProfileOut( __METHOD__ . '-' . $this->name ); wfProfileOut( __METHOD__ ); return $this->expensiveCache[$path]['localRef'];