Fixed missing argument to pingExpensiveCache() call.
authorAaron <aschulz@wikimedia.org>
Wed, 11 Apr 2012 19:02:20 +0000 (12:02 -0700)
committerAaron <aschulz@wikimedia.org>
Wed, 11 Apr 2012 19:02:20 +0000 (12:02 -0700)
Change-Id: If3cf56e9cc804388cf3396e8ab15cae2f80de828

includes/filerepo/backend/FileBackendStore.php

index 8c849ca..55dedc1 100644 (file)
@@ -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'];