mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
Fix arguments order in SolrIndexCheck
This commit is contained in:
parent
6f6c30bdcc
commit
28ca036345
@ -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)
|
||||
];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user