diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index c520ed907..83791881e 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - prevent going further if some transactions failed (mga#7016) +- summary: fix displayed network type (mga#4959) Version 14.39 - 3 September 2012 diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 1515f6d99..61abd4f10 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -960,6 +960,7 @@ sub summary { group => N("Network & Internet"), label => N("Network"), val => sub { $o->{net}{type} }, + format => sub { s/.*:://; $_ }, clicked => sub { require network::netconnect; network::netconnect::real_main($o->{net}, $o, $o->{modules_conf}); |