fixed help
This commit is contained in:
parent
4f3dff9e47
commit
bc9d12a471
|
@ -830,7 +830,7 @@ class lamList {
|
|||
$attrs = $this->attrArray;
|
||||
$sr = @ldap_search($_SESSION["ldap"]->server(), escapeDN($this->suffix), $filter, $attrs, 0, 0, 0, LDAP_DEREF_NEVER);
|
||||
if (ldap_errno($_SESSION["ldap"]->server()) == 4) {
|
||||
StatusMessage("WARN", _("LDAP sizelimit exceeded, not all entries are shown."), _("See README.openldap.txt to solve this problem."));
|
||||
StatusMessage("WARN", _("LDAP sizelimit exceeded, not all entries are shown."), _("See the manual for instructions to solve this problem."));
|
||||
}
|
||||
if ($sr) {
|
||||
$info = ldap_get_entries($_SESSION["ldap"]->server(), $sr);
|
||||
|
|
|
@ -244,7 +244,7 @@ class lamGroupList extends lamList {
|
|||
$filter = "(&(&" . $module_filter . ")(gidNumber=" . $gid . "))";
|
||||
$sr = @ldap_search($_SESSION["ldap"]->server(), escapeDN($module_suffix), $filter, $attrs, 0, 0, 0, LDAP_DEREF_NEVER);
|
||||
if (ldap_errno($_SESSION["ldap"]->server()) == 4) {
|
||||
StatusMessage("WARN", _("LDAP sizelimit exceeded, not all entries are shown."), _("See README.openldap.txt to solve this problem."));
|
||||
StatusMessage("WARN", _("LDAP sizelimit exceeded, not all entries are shown."), _("See the manual for instructions to solve this problem."));
|
||||
$this->refresh_primary = true;
|
||||
}
|
||||
if ($sr) {
|
||||
|
|
Loading…
Reference in New Issue