https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11175
--- Comment #353 from Andrew Nugged <[email protected]> --- 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. _______________________________________________ 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/
