Merge branch '2.7' into 2

This commit is contained in:
Michal Kleiner 2023-05-19 22:22:54 +12:00
commit 9881c03c22
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class SolrIndexCheck implements EnvironmentCheck
if (!empty($brokenCores)) {
return [
EnvironmentCheck::ERROR,
'The following indexes are unavailable: ' . implode($brokenCores ?? '', ', ')
'The following indexes are unavailable: ' . implode(', ', $brokenCores)
];
}