@@ -, +, @@ tag [follow-up] - On the cataloging screen (basic screen), create a new record - Go to a field with repetable subfields and associated with authorised values - Select a value for the subfield 583$x) - Clone the subfield - select another value for the new subfield - Save the record - Edit the record to modify => the clone subfield has desappeared. - Apply patch - Clean cache browser and reload page - Repeat steps above - Verify that works as expected --- 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 @@ -281,6 +281,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 --