From bfcbe5ad162b9b37889f80c107da598ff1b9a736 Mon Sep 17 00:00:00 2001 From: erickson Date: Tue, 27 Sep 2005 21:56:53 +0000 Subject: [PATCH] fixed paginate / result count display bugg git-svn-id: svn://svn.open-ils.org/ILS/trunk@1876 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/opac/skin/default/js/result_common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/opac/skin/default/js/result_common.js b/Open-ILS/web/opac/skin/default/js/result_common.js index 4d6e65227d..740e54a5be 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -276,7 +276,7 @@ function resultAddCopyCounts(rec, pagePosition) { /* collect copy counts for a record using method 'methodName' */ function resultCollectCopyCounts(rec, pagePosition, methodName) { if(rec == null || rec.doc_id() == null) return; - var req = new Request(methodName, getLocation(), rec.doc_id() ); + var req = new Request(methodName, getLocation(), rec.doc_id(), getForm() ); req.request.userdata = [ rec, pagePosition ]; req.callback(resultHandleCopyCounts); req.send(); -- 2.43.2