From: phasefx Date: Wed, 15 Jul 2009 19:20:42 +0000 (+0000) Subject: eh, still didn't think it through. so much for one changeset :) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fbaaa38ab17285e7759e16d2ab5b464a53222961;p=evergreen%2Ftadl.git eh, still didn't think it through. so much for one changeset :) git-svn-id: svn://svn.open-ils.org/ILS/trunk@13609 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/patron/search_form.js b/Open-ILS/xul/staff_client/server/patron/search_form.js index 82907c8b5b..fceecc083e 100644 --- a/Open-ILS/xul/staff_client/server/patron/search_form.js +++ b/Open-ILS/xul/staff_client/server/patron/search_form.js @@ -17,8 +17,8 @@ patron.search_form.prototype = { // The bulk of params.query is getting parsed/rendered by obj.controller.init below, and will be reconstituted from possibly modified XUL elements upon Submit. // But we're going to let search_limit and search_sort be configurable now by those spawning this interface, and let's assume there are no corresponding widgets for now. // I'm going to place them into the "obj" scope for this instance. - obj.search_limit = params.search_limit; - obj.search_sort = JSON2js( params.search_sort ); // Let's assume this is encoded as JSON + obj.search_limit = params.query.search_limit; + obj.search_sort = JSON2js( params.query.search_sort ); // Let's assume this is encoded as JSON JSAN.use('OpenILS.data'); this.OpenILS = {}; obj.OpenILS.data = new OpenILS.data(); obj.OpenILS.data.init({'via':'stash'});