summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4246eea)
raw | patch | inline | side by side (parent: 4246eea)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 10 Dec 2008 12:47:26 +0000 (12:47 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 10 Dec 2008 12:47:26 +0000 (12:47 +0000) |
-Do not display size limit warnings in constructor
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13241 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13241 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/groups/class_groupGeneric.inc | patch | blob | history |
diff --git a/gosa-core/plugins/admin/groups/class_groupGeneric.inc b/gosa-core/plugins/admin/groups/class_groupGeneric.inc
index 1229fcdf49f9d484032ec02d8513fc45279bd78a..59ad363be3412589d66b8e601421087e99ce8457 100644 (file)
/* This is always an account */
$this->is_account= TRUE;
- $this->reload();
+ $this->reload(TRUE);
}
function execute()
}
/* Reload data */
- function reload()
+ function reload($silent = FALSE)
{
/* Fix regex string */
$gufilter = session::get("gufilter");
}
/* If more than max users are found, display a message to warn the user */
- if($i == $MaxUser){
+ if($i == $MaxUser && !$silent){
msg_dialog::display(_("Configuration error"), sprintf(_("Search returned too many results. Not displaying more than %s entries!"), $MaxUser), ERROR_DIALOG);
}