Commit 7dcc8d82 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(fusiondirectory-setup) Fixed perl syntax

An error slipped in last commits for config file format change

issue #5752
Showing with 1 addition and 1 deletion
+1 -1
...@@ -746,7 +746,7 @@ sub get_ldap_connexion { ...@@ -746,7 +746,7 @@ sub get_ldap_connexion {
$locations{$loc->{'att'}->{'name'}} = { $locations{$loc->{'att'}->{'name'}} = {
'tls' => 0, 'tls' => 0,
'uri' => $ref->{'att'}->{'uri'}, 'uri' => $ref->{'att'}->{'uri'},
'base' => $ref->{'att'}->{'base'} or $loc->{'att'}->{'base'} or '', 'base' => ($ref->{'att'}->{'base'} or $loc->{'att'}->{'base'} or ''),
'bind_dn' => $ref->{'att'}->{'admindn'}, 'bind_dn' => $ref->{'att'}->{'admindn'},
'bind_pwd' => $ref->{'att'}->{'adminpassword'} 'bind_pwd' => $ref->{'att'}->{'adminpassword'}
}; };
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment