@@ -, +, @@ duplicate is suspected - Go to Patrons -> New patron and add a patron which matches an existing one in order to trigger the duplicate warning. - Confirm that Firebug (or similar) is not reporting a JavaScript error. - Confirm that the 'Edit existing' and 'Save as new' buttons work correctly. --- koha-tmpl/intranet-tmpl/prog/en/js/members.js | 6 +++--- koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/js/members.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/members.js @@ -95,8 +95,8 @@ function check_form_borrowers(nav){ var message_champ=""; if (document.form.check_member.value == 1 ) { - if (document.form_double.answernodouble) { - if( (!(document.form_double.answernodouble.checked))){ + if (document.form.answernodouble) { + if( (!(document.form.answernodouble.checked))){ document.form.nodouble.value=0; } else { document.form.nodouble.value=1; @@ -119,7 +119,7 @@ function check_form_borrowers(nav){ //patrons form to test if you checked no to the question of double if (statut!=1 && document.form.check_member.value > 0 ) { - if (!(document.form_double.answernodouble.checked)){ + if (!(document.form.answernodouble.checked)){ message_champ+= MSG_DUPLICATE_SUSPICION; statut=1; document.form.nodouble.value=0; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -214,7 +214,7 @@ function select_user(borrowernumber, borrower) { Edit existing record -
+ --