From 3dfc204023a7a25db6345c11c7ff6c2c77638007 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 6 Jan 2004 16:33:20 +0000 Subject: perl_checker compliance --- perl-install/install_steps_interactive.pm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'perl-install/install_steps_interactive.pm') diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index d1ae7ab65..8bb5cae52 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -752,7 +752,8 @@ sub installUpdates { $o->hasNetwork or return; - is_empty_hash_ref($u) and $o->ask_yesorno_({ messages => formatAlaTeX( + if (is_empty_hash_ref($u)) { + $o->ask_yesorno_({ messages => formatAlaTeX( N("You now have the opportunity to download updated packages. These packages have been updated after the distribution was released. They may contain security or bug fixes. @@ -761,8 +762,9 @@ To download these packages, you will need to have a working Internet connection. Do you want to install the updates ?")), - interactive_help_id => 'installUpdates', - }) || return; + interactive_help_id => 'installUpdates', + }) or return; + } #- bring all interface up for installing crypto packages. install_interactive::upNetwork($o); -- cgit v1.2.1