http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8064
Stefano Bargioni <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |[email protected] --- Comment #38 from Stefano Bargioni <[email protected]> --- I signed off the patch, with a little extra fix. Function check_mandatory() -in file koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt- states that subfield '@' of tags 003, 005, 008 are missing. I changed if (subfieldcode == 'lib' || subfieldcode == 'mandatory' || subfieldcode == 'repeatable' || subfieldcode == 'tab') { continue; } to if (subfieldcode == 'lib' || subfieldcode == 'mandatory' || subfieldcode == 'repeatable' || subfieldcode == 'tab' || subfieldcode == '@') { continue; } This fix solved the problem. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
