diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-15 18:11:42 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-15 18:11:42 +0000 |
commit | 4018f0145afdd52a767ba4fb4903e18e6505c64c (patch) | |
tree | f0ed1b4b083e55d759a58bdf39246e7b15c17900 /perl-install/security | |
parent | 939584f614af4ffc5ac83097e669bc22510460ee (diff) | |
download | drakx-4018f0145afdd52a767ba4fb4903e18e6505c64c.tar drakx-4018f0145afdd52a767ba4fb4903e18e6505c64c.tar.gz drakx-4018f0145afdd52a767ba4fb4903e18e6505c64c.tar.bz2 drakx-4018f0145afdd52a767ba4fb4903e18e6505c64c.tar.xz drakx-4018f0145afdd52a767ba4fb4903e18e6505c64c.zip |
(level_choose) fix defaulting to current security level in GUI
(regression introduced in r244534 on 2008-08-29, was:
'(level_choose) refresh "Security" step'
Diffstat (limited to 'perl-install/security')
-rw-r--r-- | perl-install/security/level.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/security/level.pm b/perl-install/security/level.pm index 90ea34751..5fc20738b 100644 --- a/perl-install/security/level.pm +++ b/perl-install/security/level.pm @@ -59,7 +59,7 @@ connections from many clients. Note: if your machine is only a client on the Int { val => $security, list => \@l, format => sub { #-PO: this string is used to properly format "<security level>: <level description>" - N("%s: %s", to_string($_), formatAlaTeX($help{$_})); + N("%s[:] %s", to_string($_[0]), formatAlaTeX($help{$_[0]})); }, type => 'list', gtk => { use_boxradio => 1 } }, { label => N("Security Administrator:"), title => 1 }, |