diff options
author | Christian Belisle <cbelisle@mandriva.com> | 2002-06-17 18:15:45 +0000 |
---|---|---|
committer | Christian Belisle <cbelisle@mandriva.com> | 2002-06-17 18:15:45 +0000 |
commit | 6aa4692042e56be6d55bfc51f094c8db1c7702de (patch) | |
tree | 3acaf67b63568acf97686c5f52e92bd9d9d88963 /perl-install | |
parent | f27efd3c19a8b43742f3e34dc4446ff29a9554a7 (diff) | |
download | drakx-6aa4692042e56be6d55bfc51f094c8db1c7702de.tar drakx-6aa4692042e56be6d55bfc51f094c8db1c7702de.tar.gz drakx-6aa4692042e56be6d55bfc51f094c8db1c7702de.tar.bz2 drakx-6aa4692042e56be6d55bfc51f094c8db1c7702de.tar.xz drakx-6aa4692042e56be6d55bfc51f094c8db1c7702de.zip |
draksec: customize entries for each options (lists, checkboxes and text boxes)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 8fe48710e..09f52b8b8 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1045,9 +1045,10 @@ sub choose_security_options { elsif ($expert_section == 2) { $title = _("DrakSec - Server Advanced Options"); } for $key (keys %$options) { - $shown_options[$i]->{label} = "$key - $options->{$key}{label}"; + $shown_options[$i]->{label} = "$options->{$key}{label}"; $shown_options[$i]->{val} = $options->{$key}{val}; $shown_options[$i]->{list} = $options->{$key}{list}; + $shown_options[$i]->{type} = $options->{$key}{type}; $i++; } |