Commit 27dfcceb authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by…

Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by Fré©ric Buclin <LpSolit@gmail.com> r/a=mkanat
parent 24ed1022
......@@ -153,7 +153,7 @@ sub ldap {
my ($self) = @_;
return $self->{ldap} if $self->{ldap};
my @servers = split(/[\s,]+]/, Bugzilla->params->{"LDAPserver"});
my @servers = split(/[\s,]+/, Bugzilla->params->{"LDAPserver"});
ThrowCodeError("ldap_server_not_defined") unless @servers;
foreach (@servers) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment