diff options
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 538c39d6f..dfa11e34c 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -79,16 +79,15 @@ so the messages will be displayed in english during installation") if $ENV{LANGU sub acceptLicense { my ($o) = @_; - return if $o->{useless_thing_accepted}; - $o->set_help('license'); - $o->{useless_thing_accepted} = $o->ask_from_list_(N("License agreement"), - formatAlaTeX(install_messages::main_license() . "\n\n\n" . install_messages::warning_about_patents()), - [ N_("Accept"), N_("Refuse") ], "Refuse") eq "Accept" and return; + my $r = $o->ask_from_list_(N("License agreement"), + formatAlaTeX(install_messages::main_license() . "\n\n\n" . install_messages::warning_about_patents()), + [ N_("Accept"), N_("Refuse") ], "Refuse") or die 'already displayed'; - $o->ask_yesorno('', N("Are you sure you refuse the licence?"), 1) and $o->exit; - - &acceptLicense; + if ($r ne "Accept") { + $o->ask_yesorno('', N("Are you sure you refuse the licence?"), 1) and $o->exit; + acceptLicense($o); + } } #------------------------------------------------------------------------------ |