From 184679aad32efecdbffc6f3ef8ba19375f2c910f Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 12 Jun 2008 18:19:06 +0000 Subject: do not translate empty string --- perl-install/authentication.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index cf9c04cd0..bc979ce5e 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -156,7 +156,7 @@ my %level = ( {}, { label => N("You have selected Kerberos 5 for authentication, now you must choose the type of users information "), }, {}, - { label => N("") , val => \$authentication->{nsskrb}, type => 'list', list => [ keys %level ], format => sub { $level{$_[0]} } }, + { label => "" , val => \$authentication->{nsskrb}, type => 'list', list => [ keys %level ], format => sub { $level{$_[0]} } }, {}, { label => N("LDAP Server"), val => \$authentication->{LDAP_server}, disabled => sub { $authentication->{nsskrb} eq "1" } }, { label => N("Base dn"), val => \$authentication->{LDAPDOMAIN} , disabled => sub { $authentication->{nsskrb} eq "1" } }, -- cgit v1.2.1