Skip to content

Commit 298eb50

Browse files
committed
[BUGFIX] Search Index Inspector displays no more than 10 results
Fixes: #62327 Change-Id: Ife9bbf40389fdfbd73af2bf90c9b9155f2339e15
1 parent 702492a commit 298eb50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ModIndex/IndexInspectorRemoteController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ protected function getIndexDocuments() {
119119
$query->setFieldList('*');
120120
$query->setSorting('type asc, title asc');
121121

122-
$this->search->search($query);
122+
$this->search->search($query, 0, 10000);
123123

124124
return $this->search->getResultDocuments();
125125
}

0 commit comments

Comments
 (0)