From: miker Date: Thu, 20 Dec 2007 14:03:14 +0000 (+0000) Subject: use staff version of the_quest_for_knowledge so we get "hidden" records X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7deef46815b36f5d8b524f394d311e9050fa074e;p=Evergreen.git use staff version of the_quest_for_knowledge so we get "hidden" records git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8246 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm b/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm index cb74984920..2865a4ddb6 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm @@ -558,7 +558,7 @@ sub cat_search_z_style_wrapper { $$searchhash{searches}{keyword}{term} .= join ' ', $$searchhash{searches}{keyword}{term}, $$args{search}{pubdate} if $$args{search}{pubdate}; $$searchhash{searches}{keyword}{term} .= join ' ', $$searchhash{searches}{keyword}{term}, $$args{search}{item_type} if $$args{search}{item_type}; - my $list = $self->the_quest_for_knowledge( $client, $searchhash ); + my ($list) = $self->method_lookup('open-ils.search.biblio.multiclass.staff')->run( $searchhash ); if ($list->{count} > 0) { $result->{count} = $list->{count}; diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm b/Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm index befd137801..2e43fcf95a 100755 --- a/Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Search/Z3950.pm @@ -192,6 +192,8 @@ sub do_class_search { } $logger->debug("z3950: Search Complete"); + + return undef; }