From: lpsolit%gmail.com <> Date: Mon, 20 Oct 2008 23:37:38 +0000 (+0000) Subject: Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by FrÃ... X-Git-Tag: bugzilla-3.2rc2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=258fdb756030759078df74e33d057ec996a02e9e;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) {