https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42284
--- Comment #16 from Jonathan Druart <[email protected]> --- Created attachment 198796 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=198796&action=edit Bug 42284: (follow-up) Use z3950_mandatory name as query param, not marc_lib GetMandatoryFieldZ3950 (in cataloguing/addbiblio.pl and authorities/authorities.pl) populates subfield_loo.z3950_mandatory with the z3950 query-field name expected by z3950_search.pl (isbn, title, author, issn, lccn, ...). The pre-port JS copied this value into mandatories_label and used it as the URL parameter name in GetZ3950Terms. The BIG_LOOP rewrite stored subfield_loo.marc_lib as `label` instead. marc_lib is the human-readable field label ("Title statement"), so GetZ3950Terms started emitting URLs like &Title+statement=... which z3950_search.pl ignores, and the z3950 lookup from the editor stopped matching any subfield. Use subfield_loo.z3950_mandatory for the label in z3950_mandatory_subfields on both templates. To test: - Open addbiblio.pl and fill the ISBN / title / author subfields. - Click "Z39.50/SRU search". - In the popup form (or the network request), the pre-filled fields should correspond to the entered values (title -> Title, isbn -> ISBN, ...). Before this patch they were empty. - Same flow from authorities/authorities.pl on a matching authority type. Signed-off-by: Paul Derscheid <[email protected]> -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
