diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-02 17:54:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-02 17:54:56 +0000 |
commit | 5ea5e381f9840d127fe444d8eecf34be4c45d0e6 (patch) | |
tree | 9b28145ab1da87d737416775ec3f73b0a1de260c /perl-install/install_steps_interactive.pm | |
parent | b2dd0fe8f3a0cca2f58deaa254d3639e88b7db29 (diff) | |
download | drakx-5ea5e381f9840d127fe444d8eecf34be4c45d0e6.tar drakx-5ea5e381f9840d127fe444d8eecf34be4c45d0e6.tar.gz drakx-5ea5e381f9840d127fe444d8eecf34be4c45d0e6.tar.bz2 drakx-5ea5e381f9840d127fe444d8eecf34be4c45d0e6.tar.xz drakx-5ea5e381f9840d127fe444d8eecf34be4c45d0e6.zip |
any::get_autologin() doesnt modify $o, it returns a hash
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index a2258f64c..7046e0d28 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1159,7 +1159,7 @@ sub addUser { if ($o->{security} >= 1 || $clicked) { any::ask_users($o->{prefix}, $o, $o->{users}, $o->{security}); } - any::get_autologin($o); + add2hash($o, any::get_autologin()); any::autologin($o, $o); install_steps::addUser($o); |