Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
7db6ac59
Commit
7db6ac59
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
FIX Option start tls of ldap was not correctly supported.
parent
ef336918
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/class/ldap.class.php
+13
-2
13 additions, 2 deletions
htdocs/core/class/ldap.class.php
with
13 additions
and
2 deletions
htdocs/core/class/ldap.class.php
+
13
−
2
View file @
7db6ac59
...
...
@@ -149,7 +149,7 @@ class Ldap
*/
function
connect_bind
()
{
global
$langs
;
global
$langs
,
$conf
;
$connected
=
0
;
$this
->
bind
=
0
;
...
...
@@ -186,7 +186,18 @@ class Ldap
if
(
is_resource
(
$this
->
connection
))
{
// Execute the ldap_set_option here (after connect and before bind)
// Begin TLS if requested by the configuration
if
(
!
empty
(
$conf
->
global
->
LDAP_SERVER_USE_TLS
))
{
if
(
!
ldap_start_tls
(
$this
->
connection
))
{
dol_syslog
(
get_class
(
$this
)
.
"::connect_bind failed to start tls"
,
LOG_WARNING
);
$connected
=
0
;
$this
->
close
();
}
}
// Execute the ldap_set_option here (after connect and before bind)
$this
->
setVersion
();
ldap_set_option
(
$this
->
connection
,
LDAP_OPT_SIZELIMIT
,
0
);
// no limit here. should return true.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment