[Koha-bugs] [Bug 11175] Show the parent record's component parts in the detailed views

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Oct 12 11:13:06 CEST 2021


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

--- Comment #353 from Andrew Nugged <nugged at gmail.com> ---
I did such patch for our "test production" code which now serves lively for one
library and works for them (and I needed this urgently because 11175 and 20447
already heavily used by our customer libraries):

- $part = MARC::Record->new_from_xml( $part, 'UTF-8' );
+ unless (ref $part eq 'MARC::Record') {
+     $part = MARC::Record->new_from_xml( $part, 'UTF-8' );
+ }

this is mimicking how it was before in other place.

but that also might not be THAT solution, yet it passed over the "unless" for
us because it already has MARC::Record in $part for us (because of ES as you
said).

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list