diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-02 17:42:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-02 17:42:22 +0000 |
commit | be424605afddcf72cd58fcc36f492f89162bc618 (patch) | |
tree | 25bd2fbdbe311f49726a9e370b1292a6d21ecbbc /perl-install/install_steps_interactive.pm | |
parent | a7c0d928abbfe9c843d1e23b6d40e5070770c577 (diff) | |
download | drakx-be424605afddcf72cd58fcc36f492f89162bc618.tar drakx-be424605afddcf72cd58fcc36f492f89162bc618.tar.gz drakx-be424605afddcf72cd58fcc36f492f89162bc618.tar.bz2 drakx-be424605afddcf72cd58fcc36f492f89162bc618.tar.xz drakx-be424605afddcf72cd58fcc36f492f89162bc618.zip |
use $::prefix
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 c249ea4ee..a2258f64c 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1159,8 +1159,8 @@ sub addUser { if ($o->{security} >= 1 || $clicked) { any::ask_users($o->{prefix}, $o, $o->{users}, $o->{security}); } - any::get_autologin($o->{prefix}, $o); - any::autologin($o->{prefix}, $o, $o); + any::get_autologin($o); + any::autologin($o, $o); install_steps::addUser($o); } |