summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-08-11 06:30:22 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-08-11 06:30:22 +0000
commita978890c02de833e0bd7a1a90f5c551278879337 (patch)
tree92c54fd97ea62d189aae0238e13cd4e04cd97d53
parentc1793aac90a53d872250a4f57aa336e6ba5023fa (diff)
downloaddrakwizard-a978890c02de833e0bd7a1a90f5c551278879337.tar
drakwizard-a978890c02de833e0bd7a1a90f5c551278879337.tar.gz
drakwizard-a978890c02de833e0bd7a1a90f5c551278879337.tar.bz2
drakwizard-a978890c02de833e0bd7a1a90f5c551278879337.tar.xz
drakwizard-a978890c02de833e0bd7a1a90f5c551278879337.zip
do not try to translate empty strings
-rw-r--r--ldap_wizard/Ldap.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldap_wizard/Ldap.pm b/ldap_wizard/Ldap.pm
index b448ad77..ccbe1b49 100644
--- a/ldap_wizard/Ldap.pm
+++ b/ldap_wizard/Ldap.pm
@@ -193,7 +193,7 @@ $o->{pages} = {
{ label => N("Organisation LDAP:"), type => 'field', fixed_val => \$o->{var}{suffix} },
{ label => N("Administrator LDAP:"), type => 'field', fixed_val => \$o->{var}{rootdn} },
# { label => N("Arbo LDAP:"), type => 'field', fixed_val => " " },
- { label => N(""), type => 'field', fixed_val => \$o->{var}{suffix} },
+ { label => "", type => 'field', fixed_val => \$o->{var}{suffix} },
],
post => \&do_it_setldap,
next => 'end'