https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34739
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #29 from Jonathan Druart <[email protected]> --- If you run t/db_dependent/Biblio.t first, then Merge.t will fail. I guess there are modifications made by Biblio.t to the MSS (marc subfield structure), either in DB or cached. I have noticed this suspicious stuff: 698 $biblio_record->insert_fields_ordered( 699 MARC::Field->new( '609', '1', '1', a => 'Brown,', 'c' => 'Father', 9 => $authid ) ); 700 my $biblionumber = AddBiblio( $biblio_record, '', { skip_record_index => 1 } ); if you dump $biblio_record->as_formatted you see the 609 field. BUT, if you add the following line right after: my $test = Koha::Biblios->find($biblionumber)->metadata->record then dump $test->as_formatted => 609 is not there (??) -- 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/
