@@ -, +, @@ empty subfield tag bibliographic framework) ensure that you have at least one subfield of a particular tag linked to an authorised value (e.g. in UNIMARC, tag 700 subfield 4 is 'Relator Code' and can be linked to CCODE for testing purposes). This is so that the relevant subfield will be a dropdown menu and not a textbox. Then, try to clone any subfield that is a dropdown menu. Observe that the cloned subfield's tag is empty. and try to clone a dropdown menu subfield again. This time the tag is cloned as well. --- koha-tmpl/intranet-tmpl/prog/js/cataloging.js | 1 + 1 file changed, 1 insertion(+) --- a/koha-tmpl/intranet-tmpl/prog/js/cataloging.js +++ a/koha-tmpl/intranet-tmpl/prog/js/cataloging.js @@ -319,6 +319,7 @@ function CloneSubfield(index, advancedMARCEditor){ id_input = selects[i].getAttribute('id')+new_key; selects[i].setAttribute('id',selects[i].getAttribute('id')+new_key); selects[i].setAttribute('name',selects[i].getAttribute('name')+new_key); + linkid = id_input; } // textarea --