Ticket #268: Modifications to re-enter field should flag password as modified, too.

This commit is contained in:
Michael Jumper
2013-02-13 13:55:41 -08:00
parent 8d206babbc
commit bae86644eb

View File

@@ -516,7 +516,8 @@ GuacAdmin.reset = function() {
// Update password if changed
var password_modified = false;
password_field.onchange = function() {
password_field.onchange =
reenter_password_field.onchange = function() {
password_modified = true;
};