diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/any.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 83b8358d3..1650d85a4 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- release notes: put focus back on Refuse button by default + Version 11.44 - 16 September 2008 - bootloader-config: diff --git a/perl-install/any.pm b/perl-install/any.pm index f18b287b6..7257223b7 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -957,7 +957,7 @@ sub acceptLicense { return if $o->{useless_thing_accepted}; - my $r = $::testing || 1 ? 'Accept' : 'Refuse'; + my $r = $::testing ? 'Accept' : 'Refuse'; $o->ask_from_({ title => N("License agreement"), focus_first => 1, diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 49d0f2061..ebec2cddf 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- release notes: put focus back on Refuse button by default + Version 11.45 - 16 September 2008 - allow to prefer kernel-server on x86_64 too |