From cb38c87441c282e65af24dd5e3afbc76fd5f6dcd Mon Sep 17 00:00:00 2001
From: phasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Mon, 21 Mar 2011 16:47:13 +0000
Subject: [PATCH] no, this was correct.  doh :)  the list version uses paging,
 but we're counting the entire set

git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_1@19831 dcc99617-32d9-48b4-a31d-7c20da2025e4
---
 Open-ILS/xul/staff_client/server/patron/holds.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Open-ILS/xul/staff_client/server/patron/holds.js b/Open-ILS/xul/staff_client/server/patron/holds.js
index b209cffa36..8846577d09 100644
--- a/Open-ILS/xul/staff_client/server/patron/holds.js
+++ b/Open-ILS/xul/staff_client/server/patron/holds.js
@@ -1492,7 +1492,7 @@ patron.holds.prototype = {
                     params.push( obj.pull_from_shelf_interface.current.limit ); params.push( obj.pull_from_shelf_interface.current.offset );
                     var x = document.getElementById('hold_count');
                     if (x) {
-                        obj.network.simple_request('FM_AHR_PULL_LIST_COUNT',params,function(req) {
+                        obj.network.simple_request('FM_AHR_PULL_LIST_COUNT',[ses()],function(req) {
                             var count = req.getResultObject();
                             if (typeof count.ilsevent == 'undefined' && count != null) {
                                 x.setAttribute('value', document.getElementById('patronStrings').getFormattedString(
-- 
2.11.0