[open-ils-commits] r18767 - branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Nov 17 11:43:19 EST 2010
Author: miker
Date: 2010-11-17 11:43:16 -0500 (Wed, 17 Nov 2010)
New Revision: 18767
Modified:
branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm
Log:
pass the supplied depth parameter to the query parser for use
Modified: branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm
===================================================================
--- branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm 2010-11-17 16:42:38 UTC (rev 18766)
+++ branches/rel_2_0/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/metabib.pm 2010-11-17 16:43:16 UTC (rev 18767)
@@ -3113,6 +3113,7 @@
$query = "estimation_strategy($args{estimation_strategy}) $query" if ($args{estimation_strategy});
$query = "site($args{org_unit}) $query" if ($args{org_unit});
+ $query = "depth($args{depth}) $query" if ($args{depth});
$query = "sort($args{sort}) $query" if ($args{sort});
$query = "limit($args{limit}) $query" if ($args{limit});
$query = "core_limit($args{core_limit}) $query" if ($args{core_limit});
More information about the open-ils-commits
mailing list