diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tmpl index 2c401fb05f..d6b13a9531 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tmpl @@ -100,8 +100,10 @@ function CloneField(index) { // No indicator if hide_marc // setting a new name for the new indicator - var indicator = clone.getElementsByTagName('input')[0]; - indicator.setAttribute('name',indicator.getAttribute('name')+new_key); + for(var i=0; i < 2; i++) { + var indicator = clone.getElementsByTagName('input')[i]; + indicator.setAttribute('name',indicator.getAttribute('name')+new_key); + } // settings all subfields @@ -216,6 +218,7 @@ function CloneField(index) { if(divs[i].getAttribute('name') == 'div_indicator'){ var inputs = divs[i].getElementsByTagName('input'); inputs[0].setAttribute('id',inputs[0].getAttribute('id')+new_key); + inputs[1].setAttribute('id',inputs[1].getAttribute('id')+new_key); var CloneButtonPlus; try { diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tmpl index ddb098fe03..b5647d8254 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tmpl @@ -159,8 +159,10 @@ function CloneField(index) { // No indicator if hide_marc // setting a new name for the new indicator - var indicator = clone.getElementsByTagName('input')[0]; - indicator.setAttribute('name',indicator.getAttribute('name')+new_key); + for(var i=0; i < 2; i++) { + var indicator = clone.getElementsByTagName('input')[i]; + indicator.setAttribute('name',indicator.getAttribute('name')+new_key); + } // settings all subfields @@ -274,6 +276,7 @@ function CloneField(index) { if(divs[i].getAttribute('id').match(/^div_indicator/)){ var inputs = divs[i].getElementsByTagName('input'); inputs[0].setAttribute('id',inputs[0].getAttribute('id')+new_key); + inputs[1].setAttribute('id',inputs[1].getAttribute('id')+new_key); var CloneButtonPlus; try {