From cd4bf517ef8a3dd5da50b0f23f9315b1c06eaaf0 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 14 Mar 2016 15:27:31 -0400 Subject: [PATCH] JBAS-1132 Staged user dupe search repair Duplicate searches from staged users were failing due to incorrect use of new_patron_tab within staged.js. Signed-off-by: Bill Erickson --- Open-ILS/xul/staff_client/server/patron/staged.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/patron/staged.js b/Open-ILS/xul/staff_client/server/patron/staged.js index ff8e7513b9..570aec5e36 100644 --- a/Open-ILS/xul/staff_client/server/patron/staged.js +++ b/Open-ILS/xul/staff_client/server/patron/staged.js @@ -167,7 +167,7 @@ function cancel(ids) { function spawn_search(s) { data.stash_retrieve(); - xulG.new_patron_tab( {}, { 'doit' : 1, 'query' : s } ); + xulG.new_patron_tab( {}, { 'doit' : 1, 'query' : js2JSON(s) } ); } function spawn_editor(p,func) { -- 2.11.0