mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
Merge pull request #90 from silverstripe/85-implode-args-order
Fix arguments order in SolrIndexCheck
This commit is contained in:
commit
e8517ebfb0
@ -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