From: Thomas Berezansky Date: Fri, 12 Aug 2011 13:17:46 +0000 (-0400) Subject: Clear password from password_prompt post-login X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3cbc8a303e969243105a6e80104aec6b889aaf05;p=evergreen%2Fmasslnc.git Clear password from password_prompt post-login Otherwise it remains as the plain text value. Signed-off-by: Thomas Berezansky Signed-off-by: Jason Etheridge --- diff --git a/Open-ILS/xul/staff_client/chrome/content/auth/controller.js b/Open-ILS/xul/staff_client/chrome/content/auth/controller.js index 35d885c9bf..f0f8f8fa60 100644 --- a/Open-ILS/xul/staff_client/chrome/content/auth/controller.js +++ b/Open-ILS/xul/staff_client/chrome/content/auth/controller.js @@ -456,6 +456,8 @@ auth.controller.prototype = { this.on_login_error(E); } } + // Once we are done with it, clear the password + this.controller.view.password_prompt.value = ''; },