From 0e44387f4a9424f6bfb3d0028ebeb140ec4f356c Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 21 Jun 2012 05:37:26 +0000 Subject: (offer_minimal_options) fix settings 'suggests' properly according to 'no_suggests', aka default to suggests enabled regression introduced in r4594 on 2012-05-23: '(chooseGroups) remember values when clicking "previous"' --- perl-install/install/NEWS | 4 ++++ perl-install/install/steps_interactive.pm | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2eb833030..291d3e4b8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,7 @@ +- fix settings 'suggests' properly according to 'no_suggests' + (aka default to suggests enabled) + regression intoduced in 14.23 + Version 14.29 - 17 June 2012 - adapt to perl-URPM >= 4.2 diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 5f22c20b7..1515f6d99 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -593,7 +593,7 @@ sub offer_minimal_options { my ($o) = @_; my $docs = !$o->{excludedocs}; state $minimal; - my $suggests = $o->{no_suggests}; + my $suggests = !$o->{no_suggests}; $o->ask_from_({ title => N("Type of install"), message => N("You have not selected any group of packages. -- cgit v1.2.1