diff options
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 6027828b7..f20a6382f 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -77,7 +77,7 @@ so the messages will be displayed in english during installation") if $ENV{LANGU } } -sub acceptLicence { +sub acceptLicense { my ($o) = @_; return if $o->{useless_thing_accepted}; @@ -88,7 +88,7 @@ sub acceptLicence { $o->ask_yesorno('', N("Are you sure you refuse the licence?"), 1) and $o->exit; - &acceptLicence; + &acceptLicense; } #------------------------------------------------------------------------------ |