From: miker Date: Tue, 7 Jun 2005 21:14:20 +0000 (+0000) Subject: bugfix X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=aff8321e54b656d6e3eedd0866d4644ff7f3ea7d;p=Evergreen.git bugfix git-svn-id: svn://svn.open-ils.org/ILS/trunk@775 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/extras/opensearch.ttk b/Open-ILS/src/extras/opensearch.ttk index b60beb6350..a58854e9e5 100644 --- a/Open-ILS/src/extras/opensearch.ttk +++ b/Open-ILS/src/extras/opensearch.ttk @@ -30,7 +30,7 @@ END; req = session.request(count_meth, type, string, location, depth); j = req.wait_complete(); -count = req.recv(); +count = req.recv().content(); j = req.finish; IF count > rank_threshold; @@ -40,7 +40,7 @@ END; req = session.request(search_meth, type, string, location, depth, limit, offset); j = req.wait_complete(); -list = req.recv(); +list = req.recv().content(); j = req.finish; -%] @@ -61,7 +61,7 @@ FOREACH mr_id IN list; req = session.request('open-ils.search.biblio.metarecord.mods_slim.retrieve', mr_id); req.wait_complete(); - mods = req.recv(); + mods = req.recv().content(); req.finish; -%]