From fc142c3335ee89bf2ebe45cddc7d6a4fa53e2393 Mon Sep 17 00:00:00 2001 From: wolffc Date: Thu, 16 Sep 2010 14:41:12 +0000 Subject: [PATCH] Do not size limit get_list() query in get_all_objects_for_given_base() as this function is called when any FAI class is opened and might not display all content if there are more than 200 (or the configured size limit) scripts, templates etc. objects. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@19723 594d385d-05f5-0310-b6e9-bd551577e9d8 --- trunk/gosa-plugins/fai/admin/fai/class_FAI.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/gosa-plugins/fai/admin/fai/class_FAI.inc b/trunk/gosa-plugins/fai/admin/fai/class_FAI.inc index ef27ae6ff..eb78fe08a 100644 --- a/trunk/gosa-plugins/fai/admin/fai/class_FAI.inc +++ b/trunk/gosa-plugins/fai/admin/fai/class_FAI.inc @@ -64,7 +64,7 @@ class FAI /* Ldap search for fai classes specified in this release */ $attributes = array("dn","objectClass","FAIstate","cn"); - $res_tmp = get_list($filter,"fai",$fai_base,$attributes,GL_SUBSEARCH | GL_SIZELIMIT); + $res_tmp = get_list($filter,"fai",$fai_base,$attributes,GL_SUBSEARCH); /* check the returned objects, and add/replace them in our return variable */ foreach($res_tmp as $attr){ -- 2.30.2