fixed bug with account status

This commit is contained in:
Roland Gruber 2012-04-20 18:24:13 +00:00
parent cc4f6161fb
commit 04a4a8f5ad
1 changed files with 4 additions and 0 deletions

View File

@ -849,6 +849,10 @@ class lamList {
* Rereads the entries from LDAP.
*/
protected function listRefreshData() {
// check suffix
if (!$this->suffix) {
$this->suffix = $_SESSION["config"]->get_Suffix($this->type); // default suffix
}
// configure search filter
$module_filter = get_ldap_filter($this->type); // basic filter is provided by modules
$filter = "(&" . $module_filter . $this->filterPart . ")";