diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/authentication.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 4089ccb21..a91a3ae90 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- drakauth: + o fix actually displaying "Domain Windows for authentication" - draksec, drakxhelp: o fix displaying "Mageia" - use "splash" on the kernel command line vs. "splash=silent" as per upstream diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index bb26d230c..21b346282 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -895,7 +895,7 @@ sub add_cafile() { sub auth() { my $in = interactive->vnew; $in->ask_from('', N(" "), [ - { label => N("Domain Windows for authentication : " , $authentication->{WINDOMAIN}) }, + { label => N("Domain Windows for authentication : ") . $authentication->{WINDOMAIN} }, {}, { label => N("Domain Admin User Name"), val => \$authentication->{winuser} }, { label => N("Domain Admin Password"), val => \$authentication->{winpass}, hidden => 1 }, |