diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-16 17:21:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-16 17:21:22 +0000 |
commit | 1399fad1c518b4ce193d264a20891885f5dfcf04 (patch) | |
tree | c3f7d148f8e54b8f427fda5ace986538cf63ff2c /perl-install | |
parent | 45e42d612c3dd070392948c66d833f752fdc7737 (diff) | |
download | drakx-1399fad1c518b4ce193d264a20891885f5dfcf04.tar drakx-1399fad1c518b4ce193d264a20891885f5dfcf04.tar.gz drakx-1399fad1c518b4ce193d264a20891885f5dfcf04.tar.bz2 drakx-1399fad1c518b4ce193d264a20891885f5dfcf04.tar.xz drakx-1399fad1c518b4ce193d264a20891885f5dfcf04.zip |
forward expert mode fix (why wasn't this commited in that branch too?)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 79457bc82..f79ee081b 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -653,7 +653,7 @@ sub ask_fromW { my $message = $common->{interactive_help}->() or return; $o->ask_warn(N("Help"), $message); }, 1 ]); - if ($::expert && any { $_->{advanced} } @$l) { + if ($::expert && @$l2) { $common->{advanced_state} = 1; $advanced_button->[0] = $common->{advanced_label_close}; } |