fixed bug with account status
This commit is contained in:
parent
cc4f6161fb
commit
04a4a8f5ad
|
@ -849,6 +849,10 @@ class lamList {
|
||||||
* Rereads the entries from LDAP.
|
* Rereads the entries from LDAP.
|
||||||
*/
|
*/
|
||||||
protected function listRefreshData() {
|
protected function listRefreshData() {
|
||||||
|
// check suffix
|
||||||
|
if (!$this->suffix) {
|
||||||
|
$this->suffix = $_SESSION["config"]->get_Suffix($this->type); // default suffix
|
||||||
|
}
|
||||||
// configure search filter
|
// configure search filter
|
||||||
$module_filter = get_ldap_filter($this->type); // basic filter is provided by modules
|
$module_filter = get_ldap_filter($this->type); // basic filter is provided by modules
|
||||||
$filter = "(&" . $module_filter . $this->filterPart . ")";
|
$filter = "(&" . $module_filter . $this->filterPart . ")";
|
||||||
|
|
Loading…
Reference in New Issue