[Bug 38177] New: ERM - HoldingsIQ pagination does not work
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Bug ID: 38177 Summary: ERM - HoldingsIQ pagination does not work Change sponsored?: --- Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: ERM Assignee: jonathan.druart@gmail.com Reporter: pedro.amorim@ptfs-europe.com QA Contact: testopia@bugs.koha-community.org CC: jeremy.evans@ukhsa.gov.uk, jonathan.druart@gmail.com, jonathan.field@ptfs-europe.com, martin.renvoize@ptfs-europe.com, matt.blenkinsop@ptfs-europe.com, pedro.amorim@ptfs-europe.com To reproduce: 1) Setup all the system preferences in ERM: <staff_url>/cgi-bin/koha/admin/preferences.pl?tab=erm 2) Enable EBSCO in ERMProviders. Set the ERMProviderEbscoApiKey and ERMProviderEbscoCustomerID prefs. 3) Do a search that returns more than 20 records. Click on a page other than 1. Notice the records do not change (Page is the same). -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #1 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 172782 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=172782&action=edit Bug 38177: Fix HoldingsIQ pagination Test plan: 1) Setup all the system preferences in ERM: <staff_url>/cgi-bin/koha/admin/preferences.pl?tab=erm 2) Enable EBSCO in ERMProviders. Set the ERMProviderEbscoApiKey and ERMProviderEbscoCustomerID prefs. 3) Do a search that returns more than 20 records. Click on a page other than 1. Notice the records do not change (Page is the same). 4) Apply patch. Repeat. Notice pagination now works. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #2 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 172783 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=172783&action=edit Bug 38177: Hide protected ERM prefs on UI Hide ERMProviderEbscoApiKey and ERMProviderEbscoCustomerID on the sys prefs UI -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #3 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Providing the second patch in case anyone wants to test this on sandboxes (hide the credentials). I think it's a good enhancement either way. Happy to push to a different bug if asked to. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal Assignee|jonathan.druart@gmail.com |pedro.amorim@ptfs-europe.co | |m Patch complexity|--- |Trivial patch QA Contact|testopia@bugs.koha-communit |jonathan.druart@gmail.com |y.org | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #4 from Jonathan Druart <jonathan.druart@gmail.com> --- I am not sure what you are doing here. "All" results in 500, and the problem still exists for packages and resources. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.koha-community | |.org/bugzilla3/show_bug.cgi | |?id=36483 --- Comment #5 from Jonathan Druart <jonathan.druart@gmail.com> --- May be related to bug 36483. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #6 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 172803 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=172803&action=edit [ALTERNATIVE PATCH] Bug 38177: Do not use stash to retrieve parameters The pagination for EBSCO's titles, packages and resources is broken. We shouldn't rely on $c->stash but use params from the request instead. Test plan: 1) Setup all the system preferences in ERM: <staff_url>/cgi-bin/koha/admin/preferences.pl?tab=erm 2) Enable EBSCO in ERMProviders. Set the ERMProviderEbscoApiKey and ERMProviderEbscoCustomerID prefs. 3) Do a search that returns more than 20 records. Click on a page other than 1. Notice the records do not change (Page is the same). 4) Apply patch. Repeat. Notice pagination now works. Search titles, packages and resources Use the pagination and modify the number of results per page -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|pedro.amorim@ptfs-europe.co |jonathan.druart@gmail.com |m | QA Contact|jonathan.druart@gmail.com |pedro.amorim@ptfs-europe.co | |m Status|Needs Signoff |In Discussion -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|pedro.amorim@ptfs-europe.co |jonathan.druart@gmail.com |m | Assignee|jonathan.druart@gmail.com |pedro.amorim@ptfs-europe.co | |m Status|In Discussion |Needs Signoff --- Comment #7 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- (In reply to Jonathan Druart from comment #4)
I am not sure what you are doing here.
$c->stash('koha.pagination.per_page') and $c->stash('koha.pagination.page') are undefined. I'm not sure why, or if they should ever be defined. But I'm changing that to use the params coming directly from the URL instead. This fixes the problem. I'm obv open to other options. (In reply to Jonathan Druart from comment #4)
"All" results in 500
This problem exists before the patch, i.e. I think it's another problem. (In reply to Jonathan Druart from comment #4)
the problem still exists for packages and resources.
I missed this but it makes sense since it's the same code duplicated. Whatever fix is pushed to Titles should also be done for Resources+Packages I reckon. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #172782|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #172803|0 |1 is obsolete| | --- Comment #8 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 172806 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=172806&action=edit Bug 38177: Do not use stash to retrieve parameters The pagination for EBSCO's titles, packages and resources is broken. We shouldn't rely on $c->stash but use params from the request instead. Test plan: 1) Setup all the system preferences in ERM: <staff_url>/cgi-bin/koha/admin/preferences.pl?tab=erm 2) Enable EBSCO in ERMProviders. Set the ERMProviderEbscoApiKey and ERMProviderEbscoCustomerID prefs. 3) Do a search that returns more than 20 records. Click on a page other than 1. Notice the records do not change (Page is the same). 4) Apply patch. Repeat. Notice pagination now works. Search titles, packages and resources Use the pagination and modify the number of results per page Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #172783|0 |1 is obsolete| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #9 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Thank you for the patch Joubu. It looks great and works great! I'll try to get a third-party SO and change my SO to PQA if I can do that. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #10 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Pedro Amorim from comment #7)
(In reply to Jonathan Druart from comment #4)
"All" results in 500
This problem exists before the patch, i.e. I think it's another problem.
I don't think so. It's one of the responsibility of build_query_pagination 215 if ( $per_page == -1 || $per_page > 100 ) { $per_page = 100; } -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #11 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- You're(In reply to Jonathan Druart from comment #10)
(In reply to Pedro Amorim from comment #7)
(In reply to Jonathan Druart from comment #4)
"All" results in 500
This problem exists before the patch, i.e. I think it's another problem.
I don't think so. It's one of the responsibility of build_query_pagination
215 if ( $per_page == -1 || $per_page > 100 ) { $per_page = 100; }
I must've tested it wrong, tested it again, you're right. Apologies. Thanks a lot for your help and input here @Joubu -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #12 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 173068 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173068&action=edit Bug 38177: Fix lengthMenu for components using KohaTable EBSCO HoldingsIQ doesnt consider a "All" option so neither should we. At the moment, if we pick 'All', only 100 are listed due to the logic in Providers/EBSCO/build_query_pagination. The original code hints at trying to do this but its not working. I think this got lost sometime during KohaTable.vue This patch should also have the same entry for EHoldingsEBSCOTitlePackagesList but that isnt using KohaTable and for some reason its not picking up on either aLengthMenu or lengthMeny, always shows 'All'. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #13 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- @Joubu can you look at my latest patch please. We need to fix the fact that 'All' is only returning the first 100 results from HoldingsIQ. I can't get this to work for EHoldingsEBSCOTitlePackagesList and having that adopt KohaTable is out of scope here I think. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #14 from Jonathan Druart <jonathan.druart@gmail.com> --- The patch is working for me (ie. 'All' is not displayed). -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #15 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 173119 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173119&action=edit Bug 38177: (follow-up) Fix lengthMenu for components using KohaTable -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #173119|0 |1 is obsolete| | --- Comment #16 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 173121 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173121&action=edit Bug 38177: Fix lengthMenu by removing extend $.extend is doing a deep copy of the objects. ``` var dataTablesDefaults = { "lengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, __('All')]] }; var mine = {lengthMenu: [[1, 2, 5, 10], [1, 2, 5, 10]]}; $.extend(true, {}, dataTablesDefaults, mine); ``` Returns: ``` [ 1, 2, 5, 10, -1 ] ``` Which is ugly and not what we want. We only need to merge the first level. Using the spread operator (...) will do the trick here. Note that we certainly want to adjust all the other occurrences of extend for DT's options. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #172806|0 |1 is obsolete| | --- Comment #17 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 173127 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173127&action=edit Bug 38177: Do not use stash to retrieve parameters The pagination for EBSCO's titles, packages and resources is broken. We shouldn't rely on $c->stash but use params from the request instead. Test plan: 1) Setup all the system preferences in ERM: <staff_url>/cgi-bin/koha/admin/preferences.pl?tab=erm 2) Enable EBSCO in ERMProviders. Set the ERMProviderEbscoApiKey and ERMProviderEbscoCustomerID prefs. 3) Do a search that returns more than 20 records. Click on a page other than 1. Notice the records do not change (Page is the same). 4) Apply patch. Repeat. Notice pagination now works. Search titles, packages and resources Use the pagination and modify the number of results per page Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #173068|0 |1 is obsolete| | --- Comment #18 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 173128 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173128&action=edit Bug 38177: Fix lengthMenu for components using KohaTable EBSCO HoldingsIQ doesnt consider a "All" option so neither should we. At the moment, if we pick 'All', only 100 are listed due to the logic in Providers/EBSCO/build_query_pagination. The original code hints at trying to do this but its not working. I think this got lost sometime during KohaTable.vue This patch should also have the same entry for EHoldingsEBSCOTitlePackagesList but that isnt using KohaTable and for some reason its not picking up on either aLengthMenu or lengthMeny, always shows 'All'. Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Pedro Amorim <pedro.amorim@ptfs-europe.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #173121|0 |1 is obsolete| | --- Comment #19 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- Created attachment 173129 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173129&action=edit Bug 38177: Fix lengthMenu by removing extend $.extend is doing a deep copy of the objects. ``` var dataTablesDefaults = { "lengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, __('All')]] }; var mine = {lengthMenu: [[1, 2, 5, 10], [1, 2, 5, 10]]}; $.extend(true, {}, dataTablesDefaults, mine); ``` Returns: ``` [ 1, 2, 5, 10, -1 ] ``` Which is ugly and not what we want. We only need to merge the first level. Using the spread operator (...) will do the trick here. Note that we certainly want to adjust all the other occurrences of extend for DT's options. Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Passed QA -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #173127|0 |1 is obsolete| | Attachment #173128|0 |1 is obsolete| | Attachment #173129|0 |1 is obsolete| | --- Comment #20 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 173190 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173190&action=edit Bug 38177: Do not use stash to retrieve parameters The pagination for EBSCO's titles, packages and resources is broken. We shouldn't rely on $c->stash but use params from the request instead. Test plan: 1) Setup all the system preferences in ERM: <staff_url>/cgi-bin/koha/admin/preferences.pl?tab=erm 2) Enable EBSCO in ERMProviders. Set the ERMProviderEbscoApiKey and ERMProviderEbscoCustomerID prefs. 3) Do a search that returns more than 20 records. Click on a page other than 1. Notice the records do not change (Page is the same). 4) Apply patch. Repeat. Notice pagination now works. Search titles, packages and resources Use the pagination and modify the number of results per page Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #21 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 173191 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173191&action=edit Bug 38177: Fix lengthMenu for components using KohaTable EBSCO HoldingsIQ doesnt consider a "All" option so neither should we. At the moment, if we pick 'All', only 100 are listed due to the logic in Providers/EBSCO/build_query_pagination. The original code hints at trying to do this but its not working. I think this got lost sometime during KohaTable.vue This patch should also have the same entry for EHoldingsEBSCOTitlePackagesList but that isnt using KohaTable and for some reason its not picking up on either aLengthMenu or lengthMeny, always shows 'All'. Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #22 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 173192 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=173192&action=edit Bug 38177: Fix lengthMenu by removing extend $.extend is doing a deep copy of the objects. ``` var dataTablesDefaults = { "lengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, __('All')]] }; var mine = {lengthMenu: [[1, 2, 5, 10], [1, 2, 5, 10]]}; $.extend(true, {}, dataTablesDefaults, mine); ``` Returns: ``` [ 1, 2, 5, 10, -1 ] ``` Which is ugly and not what we want. We only need to merge the first level. Using the spread operator (...) will do the trick here. Note that we certainly want to adjust all the other occurrences of extend for DT's options. Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #23 from Jonathan Druart <jonathan.druart@gmail.com> --- Skipping QA here, I don't think we can rely on somebody else to QA this one. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #24 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Missing the EBSCO login to test this, but trusting Pedro and Jonathan. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to main Version(s)| |24.11.00 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #25 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Pushed for 24.11! Well done everyone, thank you! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas@bywatersolutions.com Version(s)|24.11.00 |24.11.00,24.05.06 released in| | Status|Pushed to main |Pushed to stable --- Comment #26 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Backported to 24.05.x for upcoming 24.05.06 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to stable |Pushed to oldstable -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Fridolin Somers <fridolin.somers@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fridolin.somers@biblibre.co | |m Version(s)|24.11.00,24.05.06 |24.11.00,24.05.06,23.11.11 released in| | Status|Pushed to oldstable |Pushed to oldoldstable --- Comment #27 from Fridolin Somers <fridolin.somers@biblibre.com> --- Pushed to 23.11.x for 23.11.11 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 Jesse Maseto <jesse@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jesse@bywatersolutions.com Resolution|--- |FIXED Status|Pushed to oldoldstable |RESOLVED --- Comment #28 from Jesse Maseto <jesse@bywatersolutions.com> --- Not pushed to LTS. Marked Resolved. If you feel this should be in LTS please reply with your reason. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38177 --- Comment #29 from Pedro Amorim <pedro.amorim@ptfs-europe.com> --- This should definitely be considered for backport but it's a pain to test and there also be a datatables version mismatch by 23.05.x Please reach out if you need help testing this on 23.05.x. -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org