From ff166c63b9219bdd613e1d071f070c41a2e7cc58 Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 6 Jul 2007 16:20:07 +0000 Subject: [PATCH] moved from arbitrary limit to -1 to indicate we want to flesh the children arrays as far as possible, thanks to new cstore capabilities git-svn-id: svn://svn.open-ils.org/ILS/trunk@7529 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 eabf4e7a0e..9afc34569b 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 => 1000, + flesh => -1, flesh_fields => { aou => ['children'] }, order_by => { aou => 'name'} } @@ -2308,7 +2308,7 @@ sub retrieve_groups_tree { [ { parent => undef}, { - flesh => 1000, + flesh => -1, flesh_fields => { pgt => ["children"] }, order_by => { pgt => 'name'} } @@ -2802,7 +2802,7 @@ sub slim_tree { [ {"parent_ou" => undef }, { - flesh => 1000, + flesh => -1, flesh_fields => { aou => ['children'] }, order_by => { aou => 'name'}, select => { aou => ["id","shortname", "name"]}, -- 2.11.0