I had some problems when I changed my password to one that was a bit more secure. It seems that "special characters" (that is, other than a-z, 0-9) may cause problems. It would be a good idea to fix that.
But worse, the passwords are stored in clear text in the database. I think this is a security concern that should be addressed.
An obvious solution would be to use MD5 hashes of the passwords. I'd imagine this will require minimal effort: as soon as the password is entered, compute the MD5 hash using PHP's md5 function, and you're all set. All current clear-test passwords can be passed through the MD5 hash function during the upgrade operation.
- wolf -


