bugfixes and reimplementations

This commit is contained in:
Alexander M. Turek
2003-02-16 22:46:12 +00:00
parent a3b89ed801
commit 1ed66502dd
95 changed files with 948 additions and 111 deletions

View File

@@ -13,7 +13,7 @@ function checkPassword(the_form)
// Did the user select 'no password'?
if (typeof(the_form.elements['nopass']) != 'undefined' && the_form.elements['nopass'][0].checked) {
return true;
} else if (typeof(the_form.elements['pred_password']) != 'undefined' && the_form.elements['pred_password'].value == 'none') {
} else if (typeof(the_form.elements['pred_password']) != 'undefined' && (the_form.elements['pred_password'].value == 'none' || the_form.elements['pred_password'].value == 'keep')) {
return true;
}