diff options
author | lpsolit%gmail.com <> | 2008-10-21 01:35:51 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-10-21 01:35:51 +0200 |
commit | 27dfcceb519392c4014649d10b00d936adaf0daa (patch) | |
tree | d988da1b2e5578eaec9fdf388be3cbd3c63c12c2 /Bugzilla/Auth | |
parent | 24ed1022dec54618ba699ce2078ce0161b3ecda7 (diff) | |
download | bugzilla-27dfcceb519392c4014649d10b00d936adaf0daa.tar.gz bugzilla-27dfcceb519392c4014649d10b00d936adaf0daa.tar.xz |
Bug 460770: Incorrect regexp when parsing the list of LDAP servers - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla/Auth')
-rw-r--r-- | Bugzilla/Auth/Verify/LDAP.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |