mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 15:24:05 +02:00
parent
7daa97a166
commit
af58d6964b
@ -160,7 +160,7 @@ class LdapConnection implements Selectable, Inspectable
|
|||||||
*
|
*
|
||||||
* @var bool
|
* @var bool
|
||||||
*/
|
*/
|
||||||
protected $encryptionSuccess;
|
protected $encrypted = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array
|
* @var array
|
||||||
@ -295,11 +295,11 @@ class LdapConnection implements Selectable, Inspectable
|
|||||||
*/
|
*/
|
||||||
public function isEncrypted()
|
public function isEncrypted()
|
||||||
{
|
{
|
||||||
if ($this->encryptionSuccess === null) {
|
if ($this->encrypted === null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->encryptionSuccess;
|
return $this->encrypted;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user