diff options
| author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2026-01-24 18:28:08 +0000 |
|---|---|---|
| committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2026-01-24 23:02:09 +0000 |
| commit | 12ad753d9a26261fac9b77a381c74e1ede06544f (patch) | |
| tree | 95f26ca13f42737049e416622136d2be4f9b455c /perl-install | |
| parent | 7b254d786da28d0f332e83a0c730c2c099d0df48 (diff) | |
| download | drakx-12ad753d9a26261fac9b77a381c74e1ede06544f.tar drakx-12ad753d9a26261fac9b77a381c74e1ede06544f.tar.gz drakx-12ad753d9a26261fac9b77a381c74e1ede06544f.tar.bz2 drakx-12ad753d9a26261fac9b77a381c74e1ede06544f.tar.xz drakx-12ad753d9a26261fac9b77a381c74e1ede06544f.zip | |
installer: add help text anchor to timezone selection screen (mga#34909)
Diffstat (limited to 'perl-install')
| -rw-r--r-- | perl-install/any.pm | 6 | ||||
| -rw-r--r-- | perl-install/install/NEWS | 1 |
2 files changed, 6 insertions, 1 deletions
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 |
