From bc9d12a471e82b23811133ffc3e2746332d22cef Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Tue, 24 Nov 2009 15:28:08 +0000 Subject: [PATCH] fixed help --- lam/lib/lists.inc | 2 +- lam/lib/types/group.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lam/lib/lists.inc b/lam/lib/lists.inc index 6c9b9ad1..53d7b1ad 100644 --- a/lam/lib/lists.inc +++ b/lam/lib/lists.inc @@ -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); diff --git a/lam/lib/types/group.inc b/lam/lib/types/group.inc index b6c43f16..2818ebc5 100644 --- a/lam/lib/types/group.inc +++ b/lam/lib/types/group.inc @@ -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) {