From: Lebbeous Fogle-Weekley Date: Thu, 29 Dec 2011 17:05:21 +0000 (-0500) Subject: Remove last inconsequential net changes to Biblio.pm X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fsenator%2Fqp-latest;p=working%2FEvergreen.git Remove last inconsequential net changes to Biblio.pm Ultimately, there is no need to mess with it in this branch. Signed-off-by: Lebbeous Fogle-Weekley --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm index 2c3025d6d0..63687878bc 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Biblio.pm @@ -772,7 +772,7 @@ __PACKAGE__->register_method( params => [ {name => 'arghash', desc => 'Arg hash (see open-ils.search.biblio.multiclass)', type => 'object'}, {name => 'query', desc => 'Raw human-readable query (see perldoc '. __PACKAGE__ .')', type => 'string'}, - {name => 'docache', desc => 'Flag for caching (see open-ils.search.biblio.multiclass)', type => 'bool'} + {name => 'docache', desc => 'Flag for caching (see open-ils.search.biblio.multiclass)', type => 'object'}, ], return => { desc => 'Search results from query, like: { "count" : $count, "ids" : [ [ $id, $relevancy, $total ], ...] }', @@ -1165,7 +1165,7 @@ __PACKAGE__->register_method( }, { desc => "A flag to enable/disable searching and saving results in cache, including facets (default OFF)", - type => 'bool' + type => 'string', } ], return => { @@ -1262,6 +1262,7 @@ sub staged_search { $logger->debug("staged search: found cached results"); $summary = $data->{summary}; $results = $data->{results}; + } else { # retrieve the window of results from the database $logger->debug("staged search: fetching results from the database");