From 9d8c4393a5fec0374a3508e2684e36e057b74355 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 27 Jan 2012 18:23:40 +0000 Subject: [PATCH] r107980: added missing dir param to FileBackendShardListIterator --- includes/filerepo/backend/FileBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } } -- 2.20.1