mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-12 17:07:23 +01:00
Merge branch 'main' of https://github.com/mail-in-a-box/mailinabox
The roundcube password plugin is not disabled. # Conflicts: # management/utils.py # setup/start.sh # setup/system.sh # setup/webmail.sh # tools/editconf.py
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
--- a/Net/LDAP2/Entry.php
|
||||
+++ b/Net/LDAP2/Entry.php
|
||||
@@ -363,10 +363,9 @@ protected function setAttributes($attributes = null)
|
||||
$attributes = array();
|
||||
do {
|
||||
if (empty($attr)) {
|
||||
- $ber = null;
|
||||
- $attr = @ldap_first_attribute($this->_link, $this->_entry, $ber);
|
||||
+ $attr = @ldap_first_attribute($this->_link, $this->_entry);
|
||||
} else {
|
||||
- $attr = @ldap_next_attribute($this->_link, $this->_entry, $ber);
|
||||
+ $attr = @ldap_next_attribute($this->_link, $this->_entry);
|
||||
}
|
||||
if ($attr) {
|
||||
$func = 'ldap_get_values'; // standard function to fetch value
|
||||
Reference in New Issue
Block a user