diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 23:15:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-13 23:15:04 +0000 |
commit | 11d68caab112f44448177ffda23a8a9a88b63505 (patch) | |
tree | 9b0eaf8592200bd31e82c199b32f74c48c5520e2 /perl-install/wizards.pm | |
parent | b11bd6c8151fd5052206d03d42dc2cf6c2a1d5fa (diff) | |
download | drakx-11d68caab112f44448177ffda23a8a9a88b63505.tar drakx-11d68caab112f44448177ffda23a8a9a88b63505.tar.gz drakx-11d68caab112f44448177ffda23a8a9a88b63505.tar.bz2 drakx-11d68caab112f44448177ffda23a8a9a88b63505.tar.xz drakx-11d68caab112f44448177ffda23a8a9a88b63505.zip |
default to next/finish when no field is present
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"; |