From: miker Date: Thu, 14 Oct 2010 18:35:27 +0000 (+0000) Subject: patch from Steve Callendar to avoid resetting the passwd every time a phone number... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e0523b2e95f714e7e760fb5034c21e986f9837ea;p=evergreen%2Ftadl.git patch from Steve Callendar to avoid resetting the passwd every time a phone number changes git-svn-id: svn://svn.open-ils.org/ILS/trunk@18331 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/patron/ue_config.js b/Open-ILS/xul/staff_client/server/patron/ue_config.js index 6a038eacc8..591763ec37 100644 --- a/Open-ILS/xul/staff_client/server/patron/ue_config.js +++ b/Open-ILS/xul/staff_client/server/patron/ue_config.js @@ -295,10 +295,6 @@ function uEditDefineData(patron) { id : 'ue_day_phone', type : 'input', regex : phoneRegex, - onblur : function() { - if(uEditUsePhonePw) - uEditMakePhonePw(); - }, onpostchange: function(field, newval) { /* if this is a new patron and we are using the phone number for the password and the staff edits the phone number after entering @@ -318,11 +314,7 @@ function uEditDefineData(patron) { widget : { id : 'ue_night_phone', type : 'input', - regex : phoneRegex, - onblur : function() { - if(uEditUsePhonePw) - uEditMakePhonePw(); - } + regex : phoneRegex } }, { @@ -333,11 +325,7 @@ function uEditDefineData(patron) { widget : { id : 'ue_other_phone', type : 'input', - regex : phoneRegex, - onblur : function() { - if(uEditUsePhonePw) - uEditMakePhonePw(); - } + regex : phoneRegex } }, {