Maybe this fix is more acceptable.


from:
if (  user.getPassword().equals(password) )

to:

if ((user.getPassword() != null) && user.getPassword().equals(password))

This disallows logins if the user doesn't have a password.

~christopher




------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to