From: lpsolit%gmail.com <> Date: Mon, 20 Oct 2008 23:35:51 +0000 (+0000) Subject: Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by FrÃ... X-Git-Tag: bugzilla-3.3.1~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27dfcceb519392c4014649d10b00d936adaf0daa;p=thirdparty%2Fbugzilla.git Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by Frédéric Buclin r/a=mkanat --- diff --git a/Bugzilla/Auth/Verify/LDAP.pm b/Bugzilla/Auth/Verify/LDAP.pm index 2cc2e83524..b5904301d0 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) {