diff options
author | Francois Pons <fpons@mandriva.com> | 2001-01-19 10:34:10 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-01-19 10:34:10 +0000 |
commit | 8c4a3788c867abd17b52f44cc9f23e009e0664ba (patch) | |
tree | fe9963baacc4a0c229fca7312070a98c37234d06 /perl-install/install_steps_interactive.pm | |
parent | 52b1f86b3bd907d4c39bd0d511a41d36a03c4571 (diff) | |
download | drakx-8c4a3788c867abd17b52f44cc9f23e009e0664ba.tar drakx-8c4a3788c867abd17b52f44cc9f23e009e0664ba.tar.gz drakx-8c4a3788c867abd17b52f44cc9f23e009e0664ba.tar.bz2 drakx-8c4a3788c867abd17b52f44cc9f23e009e0664ba.tar.xz drakx-8c4a3788c867abd17b52f44cc9f23e009e0664ba.zip |
removed expert mode and install class.
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index cadb871be..e137f9a85 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -190,7 +190,6 @@ sub selectInstallClass { ), if_($o->{meta_class} ne 'desktop', _("Customized") => "specific", - _("Expert") => "expert", ), ); %c = @c = (_("Expert") => "expert") if $::expert && !$clicked; @@ -213,7 +212,7 @@ are you ready to answer that kind of questions?"), first(list2kv(@c)), ${{reverse %c}}{$::beginner ? "beginner" : $::expert ? "expert" : "specific"}, [ __("Install"), __("Update") ], $o->{isUpgrade} ? "Update" : "Install") eq "Update"; - if ($::corporate || $::beginner) { + if ($::corporate || !$::expert) { delete $o->{installClass}; } else { my %c = ( |