Bugzilla – Attachment 179066 Details for
Bug 38984
DataTables's columnDefs cleanup
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38984: (follow-up) Replace obsolete "paginate" option with "paging"
Bug-38984-follow-up-Replace-obsolete-paginate-opti.patch (text/plain), 24.96 KB, created by
Owen Leonard
on 2025-03-07 11:36:06 UTC
(
hide
)
Description:
Bug 38984: (follow-up) Replace obsolete "paginate" option with "paging"
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2025-03-07 11:36:06 UTC
Size:
24.96 KB
patch
obsolete
>From bbd398de80c5467a0009f33d6ed964abb38d9ac3 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 7 Feb 2025 17:19:15 +0000 >Subject: [PATCH] Bug 38984: (follow-up) Replace obsolete "paginate" option > with "paging" > >--- > .../intranet-tmpl/prog/en/modules/acqui/booksellers.tt | 2 +- > .../intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt | 2 +- > .../intranet-tmpl/prog/en/modules/acqui/z3950_search.tt | 2 +- > .../prog/en/modules/admin/auth_subfields_structure.tt | 2 +- > .../prog/en/modules/admin/branch_transfer_limits.tt | 2 +- > .../intranet-tmpl/prog/en/modules/admin/localization.tt | 2 +- > .../prog/en/modules/admin/patron-attr-types.tt | 2 +- > .../intranet-tmpl/prog/en/modules/admin/smart-rules.tt | 2 +- > .../prog/en/modules/admin/systempreferences.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 6 +++--- > .../prog/en/modules/cataloguing/z3950_auth_search.tt | 2 +- > .../prog/en/modules/cataloguing/z3950_search.tt | 2 +- > .../prog/en/modules/circ/circulation_batch_checkouts.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 4 ++-- > .../intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt | 2 +- > .../prog/en/modules/circ/transferstoreceive.tt | 2 +- > .../intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 2 +- > .../prog/en/modules/members/purchase-suggestions.tt | 2 +- > .../intranet-tmpl/prog/en/modules/members/statistics.tt | 2 +- > .../intranet-tmpl/prog/en/modules/members/update-child.tt | 2 +- > .../intranet-tmpl/prog/en/modules/plugins/plugins-home.tt | 2 +- > .../intranet-tmpl/prog/en/modules/reports/itemslost.tt | 2 +- > .../intranet-tmpl/prog/en/modules/reports/itemtypes.tt | 2 +- > .../intranet-tmpl/prog/en/modules/reports/serials_stats.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 4 ++-- > .../prog/en/modules/serials/serials-collection.tt | 2 +- > .../prog/en/modules/serials/subscription-detail.tt | 2 +- > .../intranet-tmpl/prog/en/modules/tools/access_files.tt | 2 +- > .../prog/en/modules/tools/batch_delete_records.tt | 4 ++-- > .../prog/en/modules/tools/batch_extend_due_dates.tt | 4 ++-- > .../prog/en/modules/tools/batch_record_modification.tt | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt | 4 ++-- > .../intranet-tmpl/prog/en/modules/tools/overduerules.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js | 2 +- > 34 files changed, 42 insertions(+), 42 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >index 99fa2e5f692..12f71851dbf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >@@ -265,7 +265,7 @@ > $(document).ready(function () { > $("table.baskets").kohaTable({ > dom: "t", >- paginate: false, >+ paging: false, > searching: false, > info: false, > order: [[1, "asc"]], >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt >index 9ce4becaa52..53e665f0764 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt >@@ -329,7 +329,7 @@ > $(document).ready(function() { > $('span.hint').hide(); > $("#table_orders").kohaTable({ >- paginate: false, >+ paging: false, > }); > > [% IF op == 'search' OR op == 'select' %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt >index c5089124618..9febefc3c0c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt >@@ -336,7 +336,7 @@ > var resultst = $("#resultst").kohaTable({ > columnDefs: [{ targets: [1], type: "nsb-nse" }], > order: [[1, "asc"]], >- paginate: false, >+ paging: false, > searching: false, > info: false, > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >index 01ceec9278e..3d94258dae5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >@@ -439,7 +439,7 @@ > $(document).ready(function() { > $("#table_authsubfieldstructure").kohaTable({ > aaSorting: [], >- paginate: false, >+ paging: false, > }); > > if ($("#subfieldtabs").length > 0) { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt >index f650f27520a..35eafb57c8f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt >@@ -180,7 +180,7 @@ > > [% FOREACH codes_loo IN codes_loop %] > $("#[% codes_loo.code | html %]table").kohaTable({ >- paginate: false, >+ paging: false, > }); > [% END %] > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt >index d72a3065628..de43441c383 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt >@@ -200,7 +200,7 @@ > > var table = $("#localization").kohaTable({ > dom: "t", >- paginate: false, >+ paging: false, > autoWidth: false, > }); > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt >index f31cef713b2..972b76302d3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt >@@ -460,7 +460,7 @@ > $(".patron_attributes_types").each(function () { > $(this).kohaTable( > { >- paginate: false, >+ paging: false, > autoWidth: false, > }, > null >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt >index 9ce8a43dbd2..98a1e303b93 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt >@@ -1440,7 +1440,7 @@ > [2, "asc"], > [3, "asc"], > ], >- paginate: false, >+ paging: false, > autoWidth: false, > }); > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt >index 0d16571cda5..104577786ea 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt >@@ -498,7 +498,7 @@ > [% IF ( loop ) %] > $("#sysprefst").kohaTable({ > dom: '<"top pager"ilf>t', >- paginate: false, >+ paging: false, > }); > [% END %] > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >index 39927914e92..57e487ad8da 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >@@ -2077,7 +2077,7 @@ > var acquisitiondetails_table = $("#orders").kohaTable( > { > dom: 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>', >- paginate: false, >+ paging: false, > autoWidth: false, > order: [[4, "desc"]], > }, >@@ -2095,7 +2095,7 @@ > var comment_table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'comments-table', 'json') | $raw %]; > var comments_table = $("#comments_table").kohaTable( > { >- paginate: false, >+ paging: false, > autoWidth: false, > order: [[2, "desc"]], > }, >@@ -2149,7 +2149,7 @@ > orderable: false, > }, > ], >- paginate: false, >+ paging: false, > ajax: { url: `/api/v1/biblios/${biblionumber}/item_groups?_per_page=-1` }, > }); > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >index ef97198bfd8..c6aabd4f65d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >@@ -268,7 +268,7 @@ > $("#resultst").kohaTable({ > dom: "t", > order: [[1, "asc"]], >- paginate: false, >+ paging: false, > }); > InitLastAction(); > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >index c81720479d8..d167f738ff3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >@@ -281,7 +281,7 @@ > var thetable = $("#resultst").kohaTable( > { > columnDefs: [{ targets: [1], type: "nsb-nse" }], >- paginate: false, >+ paging: false, > searching: false, > info: false, > }, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt >index c9d4953a457..6b280a52d42 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt >@@ -362,7 +362,7 @@ > $("#checkout_infos").kohaTable({ > dom: "t", > order: [], >- paginate: false, >+ paging: false, > }); > }); > // On-site batch checkout >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index ce5205b1ced..bde6df08b9c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -1529,7 +1529,7 @@ > var returns_table = $("#checkedintable").kohaTable( > { > searching: false, >- paginate: false, >+ paging: false, > info: false, > ordering: false, > dom: '<"table_controls"B>rt', >@@ -1713,7 +1713,7 @@ > > $("#items-bundle-contents-table").kohaTable({ > searching: false, >- paginate: false, >+ paging: false, > info: false, > order: [ > [1, "asc"], >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt >index 7b15753f444..d43c143b694 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt >@@ -101,7 +101,7 @@ > [% FOREACH library IN libraries %] > $("#transferst[% library.branchcode | html %]").kohaTable({ > dom: "t", >- paginate: false, >+ paging: false, > }); > [% END %] > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt >index 2c0532aed00..be657b1496e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt >@@ -116,7 +116,7 @@ > [% FOREACH branchesloo IN branchesloop %] > $("#transferst[% branchesloo.branchcode | html %]").kohaTable({ > dom: "t", >- paginate: false, >+ paging: false, > }); > [% END %] > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt >index 76b457569f3..9eb6e71496b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt >@@ -369,7 +369,7 @@ > { > dom: 'B<"clearfix">t', > orderCellsTop: true, >- paginate: false, >+ paging: false, > }, > table_settings > ); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt >index c18c22fe562..c2002d651fc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt >@@ -136,7 +136,7 @@ > <script> > $(document).ready(function () { > $("#suggestions").kohaTable({ >- paginate: false, >+ paging: false, > searching: false, > info: false, > dom: "t", >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt >index bd9a999add9..b9dcb7a1996 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt >@@ -106,7 +106,7 @@ > $(document).ready(function () { > $("#statistics").kohaTable({ > dom: "t", >- paginate: false, >+ paging: false, > }); > }); > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/update-child.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/update-child.tt >index dee63a66738..1c695605daa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/update-child.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/update-child.tt >@@ -68,7 +68,7 @@ > $("#catst").kohaTable({ > dom: "t", > order: [[2, "asc"]], >- paginate: false, >+ paging: false, > }); > $("#updatechildf").validate({ > rules: { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt >index 031be79581a..22f5e4581c5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt >@@ -314,7 +314,7 @@ > }); > > $("#installed_plugins").kohaTable({ >- paginate: false, >+ paging: false, > }); > }); > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >index 2856a834bc9..7068e2898fc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >@@ -206,7 +206,7 @@ > { > order: [], > autoWidth: false, >- paginate: false, >+ paging: false, > }, > table_settings, > "with_filters" >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt >index 4285d66555d..05ef1a3ed1c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt >@@ -104,7 +104,7 @@ > $(document).ready(function () { > $("#itemtypest").kohaTable({ > dom: "t", >- paginate: false, >+ paging: false, > }); > }); > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt >index 63ab0a5c9fa..c809cb46be9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt >@@ -148,7 +148,7 @@ > <script> > $(document).ready(function () { > $("#resulttable").kohaTable({ >- paginate: false, >+ paging: false, > }); > }); > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index 558b5e0d9f0..5ec2a72393b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -1436,7 +1436,7 @@ > hold_table_settings = [% TablesSettings.GetTableSettings( 'circ', 'holds', 'patron_holds_table', 'json' ) | $raw %]; > $("#patron_holds_table").kohaTable( > { >- bPaginate: false, >+ paging: false, > bKohaColumnsUseNames: true, > }, > hold_table_settings >@@ -1511,7 +1511,7 @@ > [% END %] > > var my_table = $("#requestspecific").kohaTable({ >- paginate: false, >+ paging: false, > dom: '<"top pager"ilf>t', > }); > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt >index 03ffa1c3a8d..f8a34adff65 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt >@@ -363,7 +363,7 @@ > order: [[0, "desc"]], > dom: "t", > autoWidth: false, >- paginate: false, >+ paging: false, > info: false, > searching: false, > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >index 70aa669203a..e5fc207fe59 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >@@ -472,7 +472,7 @@ > { visible: false, targets: ["NoVisible"] }, > { orderable: false, targets: ["_all"] }, > ], >- paginate: false, >+ paging: false, > autoWidth: false, > ordering: false, > }, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt >index beccfa42524..ef2a8ddeb7a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt >@@ -69,7 +69,7 @@ > $(document).ready(function () { > $("#files").kohaTable({ > columnDefs: [{ targets: [-1], orderSequence: ["desc", "asc"], searchable: false }], >- paginate: false, >+ paging: false, > }); > }); > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >index 40a8056fa99..3587bec18c5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt >@@ -352,7 +352,7 @@ > ], > dom: "t", > order: [], >- paginate: false, >+ paging: false, > }); > > $("#authorities").kohaTable({ >@@ -361,7 +361,7 @@ > ], > dom: "t", > order: [], >- paginate: false, >+ paging: false, > }); > > $("#selectrecords").on("submit",function(){ >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt >index 2d2a12e6de5..b5e07fb2b6d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt >@@ -271,14 +271,14 @@ > columnDefs: [{ targets: [1], type: "num-html" }], > dom: "t", > order: [], >- paginate: false, >+ paging: false, > }); > > $("#checkouts_result").kohaTable({ > columnDefs: [{ targets: [1], type: "num-html" }], > dom: "t", > order: [], >- paginate: false, >+ paging: false, > }); > > $("#extend_due_dates_form").on("submit", function (e) { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt >index 00019c2f736..acff12b8b89 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt >@@ -359,7 +359,7 @@ > ], > dom: "t", > order: [], >- paginate: false, >+ paging: false, > }); > > $("#authorities").kohaTable({ >@@ -368,7 +368,7 @@ > ], > dom: "t", > order: [], >- paginate: false, >+ paging: false, > }); > > $("#mainformsubmit").click(function() { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >index b6877639cf5..d3060db0360 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >@@ -610,12 +610,12 @@ > }); > $("#holidayweeklyrepeatable").kohaTable({ > dom: "t", >- paginate: false, >+ paging: false, > }); > > let dt_params = { > dom: "t", >- paginate: false, >+ paging: false, > createdRow: function (row, data, dataIndex) { > var holiday = $(row).data("date"); > if (holiday < datestring) { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >index ae135ece3c0..d37104618de 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >@@ -190,7 +190,7 @@ > } > $(".overduerulest").kohaTable({ > dom: '<"top pager"f>rt<"clear">', >- paginate: false, >+ paging: false, > }); > > $("#overduerulesf").on("submit", function (e) { >diff --git a/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js b/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js >index 0d66955cf87..e1ea7c809bc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js >@@ -31,7 +31,7 @@ $(document).ready(function () { > }); > $("#table_marcsubfieldstructure").kohaTable({ > order: [], >- paginate: false, >+ paging: false, > }); > > selectBsTabByHash("subfieldtabs"); >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38984
:
177253
|
177254
|
177255
|
177256
|
177257
|
177258
|
177259
|
177278
|
177279
|
177280
|
177281
|
177597
|
177598
|
177641
|
177642
|
177643
|
177644
|
177645
|
177646
|
177647
|
177648
|
177649
|
177651
|
177933
|
177934
|
177935
|
177936
|
177937
|
177938
|
177939
|
177940
|
177941
|
177942
|
179057
|
179058
|
179059
|
179060
|
179061
|
179062
|
179063
|
179064
|
179065
|
179066
|
180303
|
180356
|
180357
|
180358
|
180359
|
180360
|
180361
|
180362
|
180363
|
180364
|
180365
|
180366
|
181021
|
181022
|
181023
|
181024
|
181025
|
181026
|
181027
|
181028
|
181029
|
181030
|
181031