[Bug 41795] New: UNIMARC: a Zebra search for Corporate Body Name authorities will also return Collective Titles
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Bug ID: 41795 Summary: UNIMARC: a Zebra search for Corporate Body Name authorities will also return Collective Titles Initiative type: --- Sponsorship --- status: Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Searching - Zebra Assignee: koha-bugs@lists.koha-community.org Reporter: a.roussos@dataly.gr QA Contact: testopia@bugs.koha-community.org As per the Bug Summary, when you search for Corporate Body Name authorities (authtypecode 'CO') in the OPAC or in the Staff interface, the results will also include Collective Titles (authtypecode 'CO_UNI_TI'). The problem manifests in UNIMARC instances that use the default authority type codes and a Zebra search backend. AIUI, it has to do with 'Corporate Body Name' authorities using an authtypecode ('CO') that just so happens to be the prefix of another authtypecode ('CO_UNI_TI') used by 'Collective Title' authorities. Out of the box, MARC21 instances aren't affected by this. However, in the (unlikely?) scenario that you've decided to catalog authorities under different authtypes than the built-in ones and somehow managed to add new authority types that share the same prefix ('AUTH', 'AUTH_CORP', 'AUTH_PERS', etc.), then you will run into problems when searching as there will be no guarantee that filtering for the specific authority type 'AUTH' will return only the results you will be expecting. Elasticsearch is not affected -- it's a Zebra-only thing. -- 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=41795 --- Comment #1 from Andreas Roussos <a.roussos@dataly.gr> --- Created attachment 192687 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192687&action=edit Browser screenshot depicting the problem when searching -- 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=41795 Andreas Roussos <a.roussos@dataly.gr> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|koha-bugs@lists.koha-commun |a.roussos@dataly.gr |ity.org | Status|NEW |ASSIGNED -- 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=41795 --- Comment #2 from Andreas Roussos <a.roussos@dataly.gr> --- Created attachment 192688 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192688&action=edit Sample MARC record containing a single Collective Title authority This is meant to be used in the forthcoming Test Plan. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Andreas Roussos <a.roussos@dataly.gr> changed: What |Removed |Added ---------------------------------------------------------------------------- Patch complexity|--- |Small patch Status|ASSIGNED |Needs Signoff -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #3 from Andreas Roussos <a.roussos@dataly.gr> --- Created attachment 192689 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192689&action=edit Bug 41795: Include the completeness attribute when matching on authtype UNIMARC instances include the following two authority types by default (among others): Corporate Body Name (code: 'CO') and Collective Title (code: 'CO_UNI_TI'). The problem is that when searching for Corporate Body Name authorities (in the OPAC or in the Staff interface), the results will include Collective Title authorities as well. It has to do with Corporate Body Name authorities using an authtypecode (CO) that happens to be the prefix of the authtypecode (CO_UNI_TI) used by Collective Titles. NOTE: Elasticsearch is not affected by this. The fix is to additionally pass the completeness attribute to the RPN query sent to Zebra so that it will try to match on what is literally found in the entire field's phrase index (i.e. the value of UNIMARC 152$b), instead of performing a partial match. More information can be found at the official documentation: https://software.indexdata.com/zebra/doc/querymodel-rpn.html#querymodel-bib1... Test plan (tailored for KTD): 0) Launch a UNIMARC Koha instance using Zebra: ktd --marcflavour unimarc --search-engine zebra up 1) Import the Sample MARC record attached to this Bug, containing a single Collective Title authority (adding one manually would take a long time due to the many mandatory subfields). 2) Perform a generic authority search (without entering anything in the search box) for all 'Corporate Body Name' authorities. Note the number of results returned (83), and also notice that in page 4 of the results you get a stray 'Collective Title' authority ("Selected works", the one you imported in Step 1). 3) Apply this patch (and `restart_all`). 4) Repeat the same search as in Step 2. This time, the number of results returned should be one less than before (82), and you should only see 'Corporate Body Name' authorities in the results. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #4 from Andreas Roussos <a.roussos@dataly.gr> --- Created attachment 192690 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192690&action=edit Bug 41795: Fix failing test in UNIMARC instances Previously, t/AuthoritiesMarc_MARC21.t would fail if you tried to run it from within a UNIMARC instance. This patch fixes that. Test plan: 1) Inside a UNIMARC instance, run the test and notice the subtest failure: $ prove -v t/AuthoritiesMarc_MARC21.t 2) Apply this patch. 3) Re-run the test and notice that it now completes without any failures. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Andreas Roussos <a.roussos@dataly.gr> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #192690|0 |1 is obsolete| | --- Comment #5 from Andreas Roussos <a.roussos@dataly.gr> --- Created attachment 192710 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=192710&action=edit Bug 41795: Fix failing test in UNIMARC instances Previously, t/AuthoritiesMarc_MARC21.t would fail if you tried to run it from within a UNIMARC instance. This patch fixes that. Test plan: 1) Inside a UNIMARC instance, run the test and notice the subtest failure: $ prove -v t/AuthoritiesMarc_MARC21.t 2) Apply this patch. 3) Re-run the test and notice that it now completes without any failures. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 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=41795 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #192689|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=41795 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #192710|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=41795 --- Comment #6 from David Nind <david@davidnind.com> --- Created attachment 194206 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=194206&action=edit Bug 41795: Include the completeness attribute when matching on authtype UNIMARC instances include the following two authority types by default (among others): Corporate Body Name (code: 'CO') and Collective Title (code: 'CO_UNI_TI'). The problem is that when searching for Corporate Body Name authorities (in the OPAC or in the Staff interface), the results will include Collective Title authorities as well. It has to do with Corporate Body Name authorities using an authtypecode (CO) that happens to be the prefix of the authtypecode (CO_UNI_TI) used by Collective Titles. NOTE: Elasticsearch is not affected by this. The fix is to additionally pass the completeness attribute to the RPN query sent to Zebra so that it will try to match on what is literally found in the entire field's phrase index (i.e. the value of UNIMARC 152$b), instead of performing a partial match. More information can be found at the official documentation: https://software.indexdata.com/zebra/doc/querymodel-rpn.html#querymodel-bib1... Test plan (tailored for KTD): 0) Launch a UNIMARC Koha instance using Zebra: ktd --marcflavour unimarc --search-engine zebra up 1) Import the Sample MARC record attached to this Bug, containing a single Collective Title authority (adding one manually would take a long time due to the many mandatory subfields). 2) Perform a generic authority search (without entering anything in the search box) for all 'Corporate Body Name' authorities. Note the number of results returned (83), and also notice that in page 4 of the results you get a stray 'Collective Title' authority ("Selected works", the one you imported in Step 1). 3) Apply this patch (and `restart_all`). 4) Repeat the same search as in Step 2. This time, the number of results returned should be one less than before (82), and you should only see 'Corporate Body Name' authorities in the results. 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=41795 --- Comment #7 from David Nind <david@davidnind.com> --- Created attachment 194207 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=194207&action=edit Bug 41795: Fix failing test in UNIMARC instances Previously, t/AuthoritiesMarc_MARC21.t would fail if you tried to run it from within a UNIMARC instance. This patch fixes that. Test plan: 1) Inside a UNIMARC instance, run the test and notice the subtest failure: $ prove -v t/AuthoritiesMarc_MARC21.t 2) Apply this patch. 3) Re-run the test and notice that it now completes without any failures. 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=41795 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- QA Contact|testopia@bugs.koha-communit |m.de.rooy@rijksmuseum.nl |y.org | 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=41795 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #194206|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=41795 Marcel de Rooy <m.de.rooy@rijksmuseum.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #194207|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=41795 --- Comment #8 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 198128 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=198128&action=edit Bug 41795: Include the completeness attribute when matching on authtype UNIMARC instances include the following two authority types by default (among others): Corporate Body Name (code: 'CO') and Collective Title (code: 'CO_UNI_TI'). The problem is that when searching for Corporate Body Name authorities (in the OPAC or in the Staff interface), the results will include Collective Title authorities as well. It has to do with Corporate Body Name authorities using an authtypecode (CO) that happens to be the prefix of the authtypecode (CO_UNI_TI) used by Collective Titles. NOTE: Elasticsearch is not affected by this. The fix is to additionally pass the completeness attribute to the RPN query sent to Zebra so that it will try to match on what is literally found in the entire field's phrase index (i.e. the value of UNIMARC 152$b), instead of performing a partial match. More information can be found at the official documentation: https://software.indexdata.com/zebra/doc/querymodel-rpn.html#querymodel-bib1... Test plan (tailored for KTD): 0) Launch a UNIMARC Koha instance using Zebra: ktd --marcflavour unimarc --search-engine zebra up 1) Import the Sample MARC record attached to this Bug, containing a single Collective Title authority (adding one manually would take a long time due to the many mandatory subfields). 2) Perform a generic authority search (without entering anything in the search box) for all 'Corporate Body Name' authorities. Note the number of results returned (83), and also notice that in page 4 of the results you get a stray 'Collective Title' authority ("Selected works", the one you imported in Step 1). 3) Apply this patch (and `restart_all`). 4) Repeat the same search as in Step 2. This time, the number of results returned should be one less than before (82), and you should only see 'Corporate Body Name' authorities in the results. 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=41795 --- Comment #9 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 198129 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=198129&action=edit Bug 41795: Fix failing test in UNIMARC instances Previously, t/AuthoritiesMarc_MARC21.t would fail if you tried to run it from within a UNIMARC instance. This patch fixes that. Test plan: 1) Inside a UNIMARC instance, run the test and notice the subtest failure: $ prove -v t/AuthoritiesMarc_MARC21.t 2) Apply this patch. 3) Re-run the test and notice that it now completes without any failures. 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=41795 --- Comment #10 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 198130 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=198130&action=edit Bug 41795: (QA follow-up) Improve comment 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=41795 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version(s)| |26.05.00 released in| | Status|Passed QA |Pushed to main -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #11 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Nice work everyone! Pushed to main for 26.05 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |additional_work_needed CC| |lucas@bywatersolutions.com -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #12 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- prove -v /kohadevbox/koha/t/db_dependent/Biblio.t: not ok 26 - no warnings # Failed test 'no warnings' # at /usr/share/perl/5.36/Test/Builder.pm line 193. # There were 1 warning(s) # Previous test 16 'ModBiblio handles 655 with authority link but no heading' # oAuth error: Unsupported Use attribute (114) authtype Bib-1 # at /kohadevbox/koha/C4/AuthoritiesMarc.pm line 265. # C4::AuthoritiesMarc::SearchAuthorities(ARRAY(0x64712b83b508), ARRAY(0x64712b83b568), ARRAY(0x64712b83b580), ARRAY(0x64712b83b5e0), ARRAY(0x64712b83b5f8), -1, 20, "GENRE/FORM", ...) called at /kohadevbox/koha/Koha/SearchEngine/Zebra/Search.pm line 115 # Koha::SearchEngine::Zebra::Search::search_auth_compat(Koha::SearchEngine::Zebra::Search=HASH(0x64712c3ae800), HASH(0x64712c3a7f58), 0, 20, 1) called at /kohadevbox/koha/C4/Heading.pm line 254 # C4::Heading::_search(C4::Heading=HASH(0x64712c3a84c8), "match-heading", 1) called at /kohadevbox/koha/C4/Heading.pm line 157 # C4::Heading::authorities(C4::Heading=HASH(0x64712c3a84c8), 1) called at /kohadevbox/koha/C4/Linker/Default.pm line 56 # C4::Linker::Default::get_link(C4::Linker::Default=HASH(0x64712c39f168), C4::Heading=HASH(0x64712c3a84c8)) called at /kohadevbox/koha/C4/Biblio.pm line 745 # C4::Biblio::LinkBibHeadingsToAuthorities(C4::Linker::Default=HASH(0x64712c39f168), MARC::Record=HASH(0x64712b95e0f0), "", "", undef, undef) called at /kohadevbox/koha/C4/Biblio.pm line 681 # C4::Biblio::BiblioAutoLink(MARC::Record=HASH(0x64712b95e0f0), "") called at /kohadevbox/koha/C4/Biblio.pm line 413 # C4::Biblio::ModBiblio(MARC::Record=HASH(0x64712b95e0f0), 763, "") called at /kohadevbox/koha/t/db_dependent/Biblio.t line 484 # eval {...} called at /kohadevbox/koha/t/db_dependent/Biblio.t line 485 # main::run_tests("MARC21") called at /kohadevbox/koha/t/db_dependent/Biblio.t line 745 # main::__ANON__() called at /usr/share/perl/5.36/Test/Builder.pm line 374 # eval {...} called at /usr/share/perl/5.36/Test/Builder.pm line 374 # Test::Builder::subtest(Test::Builder=HASH(0x647120bf11a0), "MARC21", CODE(0x64712b95ed98)) called at /usr/share/perl/5.36/Test/More.pm line 809 # Test::More::subtest("MARC21", CODE(0x64712b95ed98)) called at /kohadevbox/koha/t/db_dependent/Biblio.t line 748 # # Looks like you failed 1 test of 26. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/26 subtests Please follow-up -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #13 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- prove -v /kohadevbox/koha/t/db_dependent/FrameworkPlugin.t: not ok 8 - no warnings # Failed test 'no warnings' # at /usr/share/perl/5.36/Test/Builder.pm line 193. # There were 1 warning(s) # Previous test 38 'Launched unimarc_field_140.pl' # oAuth error: Unsupported Use attribute (114) authtype Bib-1 # at /kohadevbox/koha/C4/AuthoritiesMarc.pm line 265. # C4::AuthoritiesMarc::SearchAuthorities(ARRAY(0x5b422d8b2ee0), ARRAY(0x5b422d4874e0), ARRAY(0x5b422d989090), ARRAY(0x5b422d64f398), ARRAY(0x5b422d473960), 0, 20, "EDITORS", ...) called at /kohadevbox/koha/cataloguing/value_builder/unimarc_field_225a.pl line 121 # Koha::FrameworkPlugin::plugin(CGI=HASH(0x5b422cbb0ea0)) called at /kohadevbox/koha/Koha/FrameworkPlugin.pm line 205 # Koha::FrameworkPlugin::launch(Koha::FrameworkPlugin=HASH(0x5b422d886988), HASH(0x5b422d5de048)) called at /kohadevbox/koha/t/db_dependent/FrameworkPlugin.t line 201 # main::test05(ARRAY(0x5b4222365850)) called at /kohadevbox/koha/t/db_dependent/FrameworkPlugin.t line 49 # main::__ANON__() called at /usr/share/perl/5.36/Test/Builder.pm line 374 # eval {...} called at /usr/share/perl/5.36/Test/Builder.pm line 374 # Test::Builder::subtest(Test::Builder=HASH(0x5b42223b59c8), "Test05 -- tests with build and launch for default plugins", CODE(0x5b4222a71960)) called at /usr/share/perl/5.36/Test/More.pm line 809 # Test::More::subtest("Test05 -- tests with build and launch for default plugins", CODE(0x5b4222a71960)) called at /kohadevbox/koha/t/db_dependent/FrameworkPlugin.t line 50 # # Looks like you failed 1 test of 8. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/8 subtests Test Summary Report ------------------- /kohadevbox/koha/t/db_dependent/FrameworkPlugin.t (Wstat: 256 (exited 1) Tests: 8 Failed: 1) Failed test: 8 Non-zero exit status: 1 -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #14 from Andreas Roussos <a.roussos@dataly.gr> --- Created attachment 198547 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=198547&action=edit Bug 41795: (follow-up) add a phrase Zebra index for 'authtype' As per https://software.indexdata.com/zebra/doc/querymodel-rpn.html#querymodel-bib1...: "[...] Complete field (3) triggers search and scan in index type="p"." The UNIMARC Zebra index definitions for authorities *do* include a 'p' (short for 'phrase') type index for authtype -- however, the MARC21 Zebra index definitions don't and this is causing these two tests to fail: t/db_dependent/Biblio.t t/db_dependent/FrameworkPlugin.t This patch fixes that. Test plan for KTD: 1) Apply the patch, then: k$ sudo cp etc/zebradb/marc_defs/marc21/authorities/authority-koha-indexdefs.xml /etc/koha/zebradb/marc_defs/marc21/authorities/ k$ sudo cp etc/zebradb/marc_defs/marc21/authorities/authority-zebra-indexdefs.xsl /etc/koha/zebradb/marc_defs/marc21/authorities/ k$ koha-rebuild-zebra --authorities --full --force --verbose kohadev 2) Run these tests -- they should both complete without warnings/errors: k$ prove -v t/db_dependent/Biblio.t k$ prove -v t/db_dependent/FrameworkPlugin.t -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #198547|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=41795 --- Comment #15 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Created attachment 198548 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=198548&action=edit Bug 41795: (follow-up) add a phrase Zebra index for 'authtype' As per https://software.indexdata.com/zebra/doc/querymodel-rpn.html#querymodel-bib1...: "[...] Complete field (3) triggers search and scan in index type="p"." The UNIMARC Zebra index definitions for authorities *do* include a 'p' (short for 'phrase') type index for authtype -- however, the MARC21 Zebra index definitions don't and this is causing these two tests to fail: t/db_dependent/Biblio.t t/db_dependent/FrameworkPlugin.t This patch fixes that. Test plan for KTD: 1) Apply the patch, then: k$ sudo cp etc/zebradb/marc_defs/marc21/authorities/authority-koha-indexdefs.xml /etc/koha/zebradb/marc_defs/marc21/authorities/ k$ sudo cp etc/zebradb/marc_defs/marc21/authorities/authority-zebra-indexdefs.xsl /etc/koha/zebradb/marc_defs/marc21/authorities/ k$ koha-rebuild-zebra --authorities --full --force --verbose kohadev 2) Run these tests -- they should both complete without warnings/errors: k$ prove -v t/db_dependent/Biblio.t k$ prove -v t/db_dependent/FrameworkPlugin.t Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Lucas Gass (lukeg) <lucas@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|additional_work_needed | --- Comment #16 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- Thanks for the speedy follow-up Andreas! Follow-up pushed to main -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #17 from Andreas Roussos <a.roussos@dataly.gr> --- (In reply to Lucas Gass (lukeg) from comment #16)
Thanks for the speedy follow-up Andreas! Thank you, Lucas, for bring the Jenkins test failures to my attention 😳
Follow-up pushed to main Great, thanks!
-- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Andreas Roussos <a.roussos@dataly.gr> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |Previously, in UNIMARC release notes| |instances, a search for | |"Corporate Body | |Name" authorities | |(authtypecode 'CO') in the | |OPAC or in the | |Staff interface would | |return "Collective Title" | |(authtypecode 'CO_UNI_TI') | |authorities as well. This | |has now been fixed. NOTE: | |this was a Zebra-only | |issue, Elasticsearch is not | |affected. -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 Jacob O'Mara <jacob.omara@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to main |Pushed to stable Version(s)|26.05.00 |26.05.00,25.11.05 released in| | -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41795 --- Comment #18 from Jacob O'Mara <jacob.omara@openfifth.co.uk> --- Thanks all, pushed to 25.11.x -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org