From: Aaron Schulz Date: Fri, 27 Jan 2012 18:23:40 +0000 (+0000) Subject: r107980: added missing dir param to FileBackendShardListIterator X-Git-Tag: 1.31.0-rc.0~25056 X-Git-Url: http://git.cyclocoop.org/%27.parametre_url%28%20%20%20generer_action_auteur%28%27charger_plugin%27%2C%20%27update_flux%27%29%2C%27update_flux%27%2C%20%27oui%27%29.%27?a=commitdiff_plain;h=9d8c4393a5fec0374a3508e2684e36e057b74355;p=lhc%2Fweb%2Fwiklou.git r107980: added missing dir param to FileBackendShardListIterator --- diff --git a/includes/filerepo/backend/FileBackend.php b/includes/filerepo/backend/FileBackend.php index 3e8ba88a43..834139cc5b 100644 --- a/includes/filerepo/backend/FileBackend.php +++ b/includes/filerepo/backend/FileBackend.php @@ -1144,7 +1144,7 @@ abstract class FileBackend extends FileBackendBase { // File listing spans multiple containers/shards list( $b, $shortCont, $r ) = self::splitStoragePath( $params['dir'] ); return new FileBackendShardListIterator( $this, - $fullCont, $this->getContainerSuffixes( $shortCont ), $params ); + $fullCont, $dir, $this->getContainerSuffixes( $shortCont ), $params ); } }