From 5d7686540bda2cf04a9c3cfb1669eb2eeedc4664 Mon Sep 17 00:00:00 2001 From: miker Date: Tue, 7 Jun 2005 21:13:24 +0000 Subject: [PATCH] bugfix git-svn-id: svn://svn.open-ils.org/ILS/trunk@774 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/extras/opensearch.ttk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Open-ILS/src/extras/opensearch.ttk b/Open-ILS/src/extras/opensearch.ttk index b2b210d5ff..b60beb6350 100644 --- a/Open-ILS/src/extras/opensearch.ttk +++ b/Open-ILS/src/extras/opensearch.ttk @@ -1,7 +1,7 @@ [%- USE CGI; USE ws = WebSession; -ws.bootstrap_client("/pines/conf/bootstrap.conf"); +j = ws.bootstrap_client("/pines/conf/bootstrap.conf"); rank_threshold = 5000; @@ -28,20 +28,20 @@ IF CGI.param('pagesize'); END; req = session.request(count_meth, type, string, location, depth); -req.wait_complete(); +j = req.wait_complete(); count = req.recv(); -req.finish; +j = req.finish; IF count > rank_threshold; search_meth = 'open-ils.search.biblio.class.unorded'; END; req = session.request(search_meth, type, string, location, depth, limit, offset); -req.wait_complete(); +j = req.wait_complete(); list = req.recv(); -req.finish; +j = req.finish; -%] -- 2.43.2