]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by FrÃ...
authorlpsolit%gmail.com <>
Mon, 20 Oct 2008 23:37:38 +0000 (23:37 +0000)
committerlpsolit%gmail.com <>
Mon, 20 Oct 2008 23:37:38 +0000 (23:37 +0000)
Bugzilla/Auth/Verify/LDAP.pm

index 2cc2e8352479f70f3d8d49eb558683efbfb6592d..b5904301d04692c4fd51bd79f157f02c0d237354 100644 (file)
@@ -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) {