From 26ab914aa990b5caf8ece7aca5857c9146e603a0 Mon Sep 17 00:00:00 2001 From: Aaron Date: Wed, 11 Apr 2012 12:02:20 -0700 Subject: [PATCH] Fixed missing argument to pingExpensiveCache() call. Change-Id: If3cf56e9cc804388cf3396e8ab15cae2f80de828 --- includes/filerepo/backend/FileBackendStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']; -- 2.20.1