From 71164e5326401fb4152398479f3ca0c4db5e4956 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 27 Aug 2007 10:47:58 +0000 Subject: - fix summary in text mode (#32858) (regression introduced by "User Management" which has no val) --- perl-install/install/steps_interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (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 e6bc8a1de..c7fcb8bf4 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -728,7 +728,7 @@ sub summary_prompt { foreach (@$l) { my $val = $_->{val}; - ($_->{format}, $_->{val}) = (sub { $val->() || N("not configured") }, ''); + ($_->{format}, $_->{val}) = (sub { $val && $val->() || N("not configured") }, ''); } $o->ask_from_({ -- cgit v1.2.1