Fix ConsoleIO::select regression in which 1.5.3-1.6.2 returned the selected values instead of index keys, fixes #7000
parent
fd61a21bff
commit
a567501e58
|
@ -289,7 +289,16 @@ class ConsoleIO extends BaseIO
|
|||
$question->setErrorMessage($errorMessage);
|
||||
$question->setMultiselect($multiselect);
|
||||
|
||||
return $helper->ask($this->input, $this->getErrorOutput(), $question);
|
||||
$result = $helper->ask($this->input, $this->getErrorOutput(), $question);
|
||||
|
||||
$results = array();
|
||||
foreach ($choices as $index => $choice) {
|
||||
if (in_array($choice, $result, true)) {
|
||||
$results[] = (string) $index;
|
||||
}
|
||||
}
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue