diff options
Diffstat (limited to 'perl-install/wizards.pm')
-rw-r--r-- | perl-install/wizards.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/wizards.pm b/perl-install/wizards.pm index e875de052..86ebd95a5 100644 --- a/perl-install/wizards.pm +++ b/perl-install/wizards.pm @@ -164,7 +164,7 @@ sub process { if_($page->{interactive_help_id}, interactive_help_id => $page->{interactive_help_id}), }, $data2); } else { - $a = $in->ask_okcancel($o->{name}, $name, $yes); + $a = $in->ask_okcancel($o->{name}, $name, $yes || 'ok'); } # interactive->ask_yesorno does not support stepping forward or backward: $a = $yes if $a && $page->{type} eq "yesorno"; |