https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35142

Martin Renvoize (ashimema) <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
                   |                            |o.uk

--- Comment #4 from Martin Renvoize (ashimema) 
<[email protected]> ---
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.
_______________________________________________
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/

Reply via email to