@@ -, +, @@ - Set syspref 'EnhancedMessagingPreferences' to 'Allow' - In staff client, go to a patron's detail page - Edit Patron messaging preferences (using link below table) - Save - Apply patch - Repeat steps above - Verify that messaging preferences save as expected - Verify that other patron modifications work as before --- koha-tmpl/intranet-tmpl/prog/js/members.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/members.js +++ a/koha-tmpl/intranet-tmpl/prog/js/members.js @@ -103,18 +103,19 @@ function check_form_borrowers(nav){ } } } - - if ( document.form.password.value != document.form.password2.value ){ + if ( document.form.password ) { + if ( document.form.password.value != document.form.password2.value ){ if ( message_champ !== '' ){ message_champ += "\n"; } message_champ+= MSG_PASSWORD_MISMATCH; statut=1; - } + } - if ( ! check_password( document.form.password.value ) ) { - message_champ += MSG_PASSWORD_CONTAINS_TRAILING_SPACES; - statut = 1; + if ( ! check_password( document.form.password.value ) ) { + message_champ += MSG_PASSWORD_CONTAINS_TRAILING_SPACES; + statut = 1; + } } //patrons form to test if you checked no to the question of double --