[Koha-bugs] [Bug 8064] Merge several biblio records

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Mar 11 10:31:14 CET 2014


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8064

Stefano Bargioni <bargioni at pusc.it> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Signoff               |Signed Off
                 CC|                            |bargioni at pusc.it

--- Comment #38 from Stefano Bargioni <bargioni at pusc.it> ---
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.


More information about the Koha-bugs mailing list