From 4945b7caff03714eb0a27d19a51933aa03d4b384 Mon Sep 17 00:00:00 2001
From: Nick Clemens <nick@bywatersolutions.com>
Date: Thu, 7 Oct 2021 19:34:01 +0000
Subject: [PATCH] Bug 29193: Specify paging as false in
 circ-patron-search-results.js

This patch removes paging from patron searches using circ-patron-search-results.js

To test:
1 - Browse to a record
2 - Click on the 'Holds' tab
3 - Search for 'a' in patrons
4 - Note you see only 20 results
5 - Sort by name and note that you see different results
6 - Apply patch
7 - Reload page and search
8 - Note you see all results
---
 koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js b/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js
index fa44b3e96a..578a1b8a2d 100644
--- a/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js
+++ b/koha-tmpl/intranet-tmpl/prog/js/circ-patron-search-results.js
@@ -7,7 +7,7 @@ $(document).ready(function() {
         {
             "aaSorting": [ 0, "asc" ],
             "sDom": "t",
-            "iDisplayLength": -1
+            "paging": false
         },
         columns_settings_borrowers_table, null);
 });
-- 
2.20.1