diff options
author | Francois Pons <fpons@mandriva.com> | 2000-09-05 17:27:21 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-09-05 17:27:21 +0000 |
commit | d64b6f87d1421b55779b24944c40b7e5df519b73 (patch) | |
tree | 89579a3bf81af8b56e700346936b9ef19d17a6e3 /perl-install/install_steps_interactive.pm | |
parent | a1c87ddf72bd3657d680940da5786e3a6cc84b08 (diff) | |
download | drakx-d64b6f87d1421b55779b24944c40b7e5df519b73.tar drakx-d64b6f87d1421b55779b24944c40b7e5df519b73.tar.gz drakx-d64b6f87d1421b55779b24944c40b7e5df519b73.tar.bz2 drakx-d64b6f87d1421b55779b24944c40b7e5df519b73.tar.xz drakx-d64b6f87d1421b55779b24944c40b7e5df519b73.zip |
*** empty log message ***
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 b28942087..12da4cb5c 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -573,8 +573,8 @@ sub configurePrinter { #- figure out what printing system to use, currently are suported cups and lpr, #- in case this has not be detected above. - $::beginner and $o->{printer}{mode} ||= 'cups'; #'lpr'; - if (!$o->{printer}{mode}) { + $::beginner and $o->{printer}{mode} ||= 'cups'; + if ($::expert || !$o->{printer}{mode}) { $o->{printer}{mode} = $o->ask_from_list_([''], _("What printing system do you want to use?"), [ 'cups', 'lpr', __("Cancel") ], ); |