[Bug 30850] New: Add default mapping for biblio.author to 110$a (MARC21)
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Bug ID: 30850 Summary: Add default mapping for biblio.author to 110$a (MARC21) Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: System Administration Assignee: koha-bugs@lists.koha-community.org Reporter: caroline.cyr-la-rose@inlibro.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com Currently, biblio.author is only linked to 100$a, which is fine in most cases. But some records have a corporate author (110$a) and those authors don't appear anywhere where the author usually appears (checkout table, letters, labels, etc.) I propose we add a default mapping from 110$a to biblio.author. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Trivial patch Status|NEW |Needs Signoff -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 --- Comment #1 from Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> --- Created attachment 135356 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135356&action=edit Bug 30850: Add default mapping for biblio.author to 110$a (MARC21) This patch adds a mapping to biblio.author in 110$a in the default framework Note: I added lots of tests for different scenarios, I'm not sure it's necessary to test everything. I don't want this to be a deterrent! The first one is necessary, the rest are use cases. Note 2: I don't work with ktd so maybe the steps for loading new frameworks are different, sorry about that, I honestly don't know another way to do it. Test 1 - basic test Before applying patch, 1- Create a new record with a corporate author (110$a) 2- Query the database, author should be null select author from biblio where biblionumber = XXXX; (do other control tests if you want/need before applying the patch) 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Query the database, author should be filled 8- Go to Administration > MARC Bibliographic framework test, everything should be OK Test 2 - checkouts table Before applying patch, 1- Create a new record and item with a corporate author (110$a) 2- Checkout the item for that record to a patron Note that the author is not listed in the checkouts table 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Refresh the checkouts table, the author should be listed Test 3 - notices and slips Before applying patch, 1- Go to Tools > Notices & slips 2- Edit ISSUESLIP and add <<biblio.author>> after <<biblio.title>> 3- Save the notice 4- Create a new record and item with a corporate author (110$a) 5- Checkout the item for that record to a patron 6- Print the checkout slip Note that the author is not listed on the slip 7- Apply patch 8- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 9- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 10- Edit the record, don't change anything and save it 11- Print the checkout slip, the author should be listed Test 4 - labels Before applying the patch, 1- Create a new record and item with a corporate author (110$a) 2- Go to Tools > Label Creator 3- Create a label batch with that item 4- Export the batch in PDF using the Avery 5160 template and 'Label test' layout Note that the author is not listed 5- Apply patch 6- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 7- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 8- Edit the record, don't change anything and save it 9- Export the label batch again, the author should be listed -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |caroline.cyr-la-rose@inlibr |ity.org |o.com --- Comment #2 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- I've thought about this recently as well - I think it's a great idea. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |m.de.rooy@rijksmuseum.nl -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 David Nind <david@davidnind.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=30850 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135356|0 |1 is obsolete| | --- Comment #3 from David Nind <david@davidnind.com> --- Created attachment 135440 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135440&action=edit Bug 30850: Add default mapping for biblio.author to 110$a (MARC21) This patch adds a mapping to biblio.author in 110$a in the default framework Note: I added lots of tests for different scenarios, I'm not sure it's necessary to test everything. I don't want this to be a deterrent! The first one is necessary, the rest are use cases. Note 2: I don't work with ktd so maybe the steps for loading new frameworks are different, sorry about that, I honestly don't know another way to do it. Test 1 - basic test Before applying patch, 1- Create a new record with a corporate author (110$a) 2- Query the database, author should be null select author from biblio where biblionumber = XXXX; (do other control tests if you want/need before applying the patch) 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Query the database, author should be filled 8- Go to Administration > MARC Bibliographic framework test, everything should be OK Test 2 - checkouts table Before applying patch, 1- Create a new record and item with a corporate author (110$a) 2- Checkout the item for that record to a patron Note that the author is not listed in the checkouts table 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Refresh the checkouts table, the author should be listed Test 3 - notices and slips Before applying patch, 1- Go to Tools > Notices & slips 2- Edit ISSUESLIP and add <<biblio.author>> after <<biblio.title>> 3- Save the notice 4- Create a new record and item with a corporate author (110$a) 5- Checkout the item for that record to a patron 6- Print the checkout slip Note that the author is not listed on the slip 7- Apply patch 8- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 9- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 10- Edit the record, don't change anything and save it 11- Print the checkout slip, the author should be listed Test 4 - labels Before applying the patch, 1- Create a new record and item with a corporate author (110$a) 2- Go to Tools > Label Creator 3- Create a label batch with that item 4- Export the batch in PDF using the Avery 5160 template and 'Label test' layout Note that the author is not listed 5- Apply patch 6- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 7- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 8- Edit the record, don't change anything and save it 9- Export the label batch again, the author should be listed Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david@davidnind.com --- Comment #4 from David Nind <david@davidnind.com> --- Testing notes using koha-testing-docker: - I used record 231 as this has a corporate author (110$a). - I'm not sure of the best way to load the frameworks in koha-testing-docker, but after applying the patch I ran reset_all, instead of deleting the frameworks and reloading the new frameworks. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA QA Contact|testopia@bugs.koha-communit |m.de.rooy@rijksmuseum.nl |y.org | --- Comment #5 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- QA Comment: I am still missing something here. What we do, is making sure that new installs will map 110a too. But we do not care about the existing installs. I understand that we might not dictate this setting to all these installs, but we should probably inform them about this choice by printing an informational message from a dbrev (atomic update). Please add also something in Release notes. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This enhancement maps 110$a release notes| |(corporate author in | |MARC21) to biblio.author in | |the default framework. | |Having the corporate author | |in biblio.author ensures it | |will appear wherever the | |author usually appears in | |the staff interface. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 --- Comment #6 from Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> --- (In reply to Marcel de Rooy from comment #5)
but we should probably inform them about this choice by printing an informational message from a dbrev (atomic update).
Sorry, I have no idea what that means. Please explain like I'm 5.
Please add also something in Release notes.
Done. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 --- Comment #7 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Might be the easiest to point you to an example that you could copy and adjust: Take e.g. this file installer/data/mysql/db_revs/220600000.pl This dbrev (database revision) or atomic update only contains a informational print statement. Copy this file to installer/data/mysql/atomicupdate/bug_30850.pl Adjust it, changing the description, bug number and print statements. When you remove the utf8 clutter here, no need to keep the use uft8; use Encode and the encode_utf8 calls before printing (with the say statement). Test it by running updatedatabase.pl And ready to go ! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135440|0 |1 is obsolete| | --- Comment #8 from Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> --- Created attachment 135587 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135587&action=edit Bug 30850: Add default mapping for biblio.author to 110$a (MARC21) This patch adds a mapping to biblio.author in 110$a in the default framework Note: I added lots of tests for different scenarios, I'm not sure it's necessary to test everything. I don't want this to be a deterrent! The first one is necessary, the rest are use cases. Note 2: I don't work with ktd so maybe the steps for loading new frameworks are different, sorry about that, I honestly don't know another way to do it. Test 1 - basic test Before applying patch, 1- Create a new record with a corporate author (110$a) 2- Query the database, author should be null select author from biblio where biblionumber = XXXX; (do other control tests if you want/need before applying the patch) 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Query the database, author should be filled 8- Go to Administration > MARC Bibliographic framework test, everything should be OK Test 2 - checkouts table Before applying patch, 1- Create a new record and item with a corporate author (110$a) 2- Checkout the item for that record to a patron Note that the author is not listed in the checkouts table 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Refresh the checkouts table, the author should be listed Test 3 - notices and slips Before applying patch, 1- Go to Tools > Notices & slips 2- Edit ISSUESLIP and add <<biblio.author>> after <<biblio.title>> 3- Save the notice 4- Create a new record and item with a corporate author (110$a) 5- Checkout the item for that record to a patron 6- Print the checkout slip Note that the author is not listed on the slip 7- Apply patch 8- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 9- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 10- Edit the record, don't change anything and save it 11- Print the checkout slip, the author should be listed Test 4 - labels Before applying the patch, 1- Create a new record and item with a corporate author (110$a) 2- Go to Tools > Label Creator 3- Create a label batch with that item 4- Export the batch in PDF using the Avery 5160 template and 'Label test' layout Note that the author is not listed 5- Apply patch 6- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 7- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 8- Edit the record, don't change anything and save it 9- Export the label batch again, the author should be listed Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 --- Comment #9 from Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> --- Created attachment 135588 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135588&action=edit Bug 30850: dbrev to inform existing users of the mapping change This patch adds a message in a dbrev to inform users of existing installations that they might want to add a mapping from 110$a to biblio.author -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Needs Signoff --- Comment #10 from Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> --- Hi Marcel, I did what you said. I hope it's ok. I admit I'm a bit out of my depth, but I guess copy and pasting is something I can do, lol! Caroline -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 David Nind <david@davidnind.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=30850 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135588|0 |1 is obsolete| | --- Comment #11 from David Nind <david@davidnind.com> --- Created attachment 135633 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135633&action=edit Bug 30850: dbrev to inform existing users of the mapping change This patch adds a message in a dbrev to inform users of existing installations that they might want to add a mapping from 110$a to biblio.author Signed-off-by: David Nind <david@davidnind.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 --- Comment #12 from David Nind <david@davidnind.com> --- I have signed-off the dbrev patch (using koha-testing-docker). The instructions worked (see note) for updating an existing installation: 1. Apply patches. 2. Run updatedatabase, flush_memcached, and restart_all. 3. Add mapping for 110$a to biblio.author (Administration > Koha to MARC mapping). 4. Run ./misc/batchRebuilBiblioTables.pl -c (see note). Note: - I encountered this error message with the KTD sample data when running ./misc/batchRebuilBiblioTables.pl -c C4::Biblio::_koha_modify_biblioitem_nonmarc(): DBI Exception: DBD::mysql::st execute failed: Data too long for column 'lccn' at row 1 at misc/batchRebuildBiblioTables.pl line 71 - I have logged bug 30896 for this. - To get around the error, I used Tools > Batch item modification to delete the LCCN data in 010 (created report to list all the record numbers, added MARC modification templates to delete fields 010 $8 $a $b $z, ran batch record modification). -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> 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=30850 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135587|0 |1 is obsolete| | --- Comment #13 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 135637 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135637&action=edit Bug 30850: Add default mapping for biblio.author to 110$a (MARC21) This patch adds a mapping to biblio.author in 110$a in the default framework Note: I added lots of tests for different scenarios, I'm not sure it's necessary to test everything. I don't want this to be a deterrent! The first one is necessary, the rest are use cases. Note 2: I don't work with ktd so maybe the steps for loading new frameworks are different, sorry about that, I honestly don't know another way to do it. Test 1 - basic test Before applying patch, 1- Create a new record with a corporate author (110$a) 2- Query the database, author should be null select author from biblio where biblionumber = XXXX; (do other control tests if you want/need before applying the patch) 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Query the database, author should be filled 8- Go to Administration > MARC Bibliographic framework test, everything should be OK Test 2 - checkouts table Before applying patch, 1- Create a new record and item with a corporate author (110$a) 2- Checkout the item for that record to a patron Note that the author is not listed in the checkouts table 3- Apply patch 4- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 5- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 6- Edit the record, don't change anything and save it 7- Refresh the checkouts table, the author should be listed Test 3 - notices and slips Before applying patch, 1- Go to Tools > Notices & slips 2- Edit ISSUESLIP and add <<biblio.author>> after <<biblio.title>> 3- Save the notice 4- Create a new record and item with a corporate author (110$a) 5- Checkout the item for that record to a patron 6- Print the checkout slip Note that the author is not listed on the slip 7- Apply patch 8- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 9- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 10- Edit the record, don't change anything and save it 11- Print the checkout slip, the author should be listed Test 4 - labels Before applying the patch, 1- Create a new record and item with a corporate author (110$a) 2- Go to Tools > Label Creator 3- Create a label batch with that item 4- Export the batch in PDF using the Avery 5160 template and 'Label test' layout Note that the author is not listed 5- Apply patch 6- Delete frameworks delete from biblio_framework; delete from marc_subfield_structure; delete from marc_tag_structure; 7- Load new frameworks ./misc/load_yaml.pl -f installer/data/mysql/en/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.yml --load 8- Edit the record, don't change anything and save it 9- Export the label batch again, the author should be listed Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #135633|0 |1 is obsolete| | --- Comment #14 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 135638 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135638&action=edit Bug 30850: dbrev to inform existing users of the mapping change This patch adds a message in a dbrev to inform users of existing installations that they might want to add a mapping from 110$a to biblio.author Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 --- Comment #15 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 135639 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=135639&action=edit Bug 30850: (QA follow-up) Cosmetic changes to atomic update No need to encode, etc. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 --- Comment #16 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- (In reply to Caroline Cyr La Rose from comment #10)
Hi Marcel,
I did what you said. I hope it's ok.
I admit I'm a bit out of my depth, but I guess copy and pasting is something I can do, lol!
Caroline
Great, Caroline. What isnt in your reach now? :) If we hadnt copy and paste, what should developers do ? -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Tomás Cohen Arazi <tomascohen@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to master Version(s)| |22.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=30850 --- Comment #17 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Pushed to master for 22.11. Nice work everyone, thanks! -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30850 Lucas Gass <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lucas@bywatersolutions.com --- Comment #18 from Lucas Gass <lucas@bywatersolutions.com> --- Enhancement will not be backported to 22.05, if needed please ask! -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org