From 12ad753d9a26261fac9b77a381c74e1ede06544f Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sat, 24 Jan 2026 18:28:08 +0000 Subject: installer: add help text anchor to timezone selection screen (mga#34909) --- perl-install/any.pm | 6 +++++- perl-install/install/NEWS | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/perl-install/any.pm b/perl-install/any.pm index 6939e1638..3239e38f0 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1837,7 +1837,11 @@ sub configure_timezone { my ($in, $timezone, $ask_gmt, $o_hide_ntp) = @_; require timezone; - my $selected_timezone = $in->ask_from_treelist(N("Timezone"), N("Which is your timezone?"), '/', [ timezone::getTimeZones() ], $timezone->{timezone}) or return; + my $selected_timezone = $timezone->{timezone}; + $in->ask_from_( + { interactive_help_id => 'configureTimezone', title => N("Timezone"), messages => N("Which is your timezone?") }, + [ { val => \$selected_timezone, separator => '/', list => [ timezone::getTimeZones() ], sort => 1 } ] + ); $timezone->{timezone} = $selected_timezone; configure_time_more($in, $timezone, $o_hide_ntp) diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 8dc5e75c4..264ac10c7 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- add help text anchor to timezone selection screen (mga#34909) - eliminate unnecessary calls to 'systemctl is-enabled' in services::services() o this reduces clutter in the installer log file - fix partitioning wizard -- cgit v1.2.1