@@ -, +, @@ tag - On the cataloging screen (basic screen), create a new record - Go to the 5xx fields - Put something on the 521$a subfield or other textareas (e.g. 520$u or 583$x) - Clone the subfield - 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 @@ -288,6 +288,7 @@ function CloneSubfield(index, advancedMARCEditor){ id_input = textareas[i].getAttribute('id')+new_key; textareas[i].setAttribute('id',textareas[i].getAttribute('id')+new_key); textareas[i].setAttribute('name',textareas[i].getAttribute('name')+new_key); + linkid = id_input; } // Handle click event on buttonDot for plugin --