Skip to content

Commit

Permalink
Bug Fix Question Default using bad default value (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
rampmaster authored and kunicmarko20 committed May 25, 2018
1 parent 7481d36 commit ebe9718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CKEditorInstallerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ private function choice($question, array $choices, $default, InputInterface $inp
$result = $helper->ask(
$input,
$output,
new ChoiceQuestion($question, $choices, $choices[$default])
new ChoiceQuestion($question, $choices, $default)
);

$output->writeln('');
Expand Down

0 comments on commit ebe9718

Please sign in to comment.