From 27dfcceb519392c4014649d10b00d936adaf0daa Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 20 Oct 2008 23:35:51 +0000 Subject: Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by Frédéric Buclin r/a=mkanat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Auth/Verify/LDAP.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Auth') diff --git a/Bugzilla/Auth/Verify/LDAP.pm b/Bugzilla/Auth/Verify/LDAP.pm index 2cc2e8352..b5904301d 100644 --- a/Bugzilla/Auth/Verify/LDAP.pm +++ b/Bugzilla/Auth/Verify/LDAP.pm @@ -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) { -- cgit v1.2.3-24-g4f1b