https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35142 Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.renvoize@openfifth.c | |o.uk --- Comment #4 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- There's a possible regression here lurking.. raw vs. ViewPolicy-filtered records in the OPAC displays. I don't think it actually matters in this case specifically.. whose going to hide the 035?, but it may in subsequent such migrations. The old callers passed a local $record that had been processed in place by $record_processor->process($record) (ViewPolicy filter) before OCLC extraction. The new $biblio->normalized_oclc reads $biblio->metadata->record — and neither Koha::Biblio::metadata nor Koha::Biblio::Metadata::record caches, so it rebuilds a fresh, unfiltered MARC::Record from XML. Affected sites where the source record genuinely differs: - opac/opac-detail.pl:146 — $record_processor->process($record) mutates the record previously used for OCLC. - opac/opac-ISBDdetail.pl:119 — same in-place ViewPolicy processing. - opac/opac-user.pl — old code used metadata_record({ interface => 'opac', ... }), an OPAC-filtered copy. -- You are receiving this mail because: You are watching all bug changes.