Compare commits

...

5 Commits

Author SHA1 Message Date
Michal Kleiner 44d2a0f57a Merge branch '3.0' into 3 2023-05-19 22:23:24 +12:00
Michal Kleiner d2af098296 Merge branch '2' into 3.0 2023-05-19 22:23:09 +12:00
Michal Kleiner 9881c03c22 Merge branch '2.7' into 2 2023-05-19 22:22:54 +12:00
Guy Sartorelli e8517ebfb0
Merge pull request #90 from silverstripe/85-implode-args-order
Fix arguments order in SolrIndexCheck
2023-05-19 20:43:40 +12:00
Michal Kleiner 28ca036345
Fix arguments order in SolrIndexCheck 2023-05-19 14:53:43 +12:00
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)
];
}