From: Aaron Schulz Date: Sun, 25 Dec 2011 23:17:30 +0000 (+0000) Subject: Fixed undefined var from r106280 X-Git-Tag: 1.31.0-rc.0~25752 X-Git-Url: http://git.cyclocoop.org//%27http:/ie7-js.googlecode.com/svn/test/index.html/%27?a=commitdiff_plain;h=fb7204f4a0b33198b16817936efe7655e6c11e8e;p=lhc%2Fweb%2Fwiklou.git Fixed undefined var from r106280 --- diff --git a/includes/filerepo/backend/FileBackendMultiWrite.php b/includes/filerepo/backend/FileBackendMultiWrite.php index d9b90c2cb6..58225fd2f0 100644 --- a/includes/filerepo/backend/FileBackendMultiWrite.php +++ b/includes/filerepo/backend/FileBackendMultiWrite.php @@ -205,7 +205,7 @@ class FileBackendMultiWrite extends FileBackendBase { */ function getFileTimestamp( array $params ) { // Skip non-master for consistent timestamps - $realParams = $this->substOpPaths( $params, $backend ); + $realParams = $this->substOpPaths( $params, $this->backends[$this->masterIndex] ); return $this->backends[$this->masterIndex]->getFileTimestamp( $realParams ); }