From 617a46313cc584d6783eb2a000618c9e806ed452 Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 6 Jul 2007 15:56:37 +0000 Subject: [PATCH] changed arbitrary flesh level from 2 to 1000 to avoid the chance of hitting that limit. will discuss alternate approach to prevent having to put these limits at all... git-svn-id: svn://svn.open-ils.org/ILS/trunk@7528 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Application/Actor.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm index 50319b46ad..eabf4e7a0e 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm @@ -1042,7 +1042,7 @@ sub get_org_tree { [ {"parent_ou" => undef }, { - flesh => 2, + flesh => 1000, flesh_fields => { aou => ['children'] }, order_by => { aou => 'name'} } @@ -2308,7 +2308,7 @@ sub retrieve_groups_tree { [ { parent => undef}, { - flesh => 10, + flesh => 1000, flesh_fields => { pgt => ["children"] }, order_by => { pgt => 'name'} } @@ -2802,7 +2802,7 @@ sub slim_tree { [ {"parent_ou" => undef }, { - flesh => 2, + flesh => 1000, flesh_fields => { aou => ['children'] }, order_by => { aou => 'name'}, select => { aou => ["id","shortname", "name"]}, -- 2.43.2