Bug in change password
Brought to you by:
malenki
There's a bug in the change password functionality. The
line that does the MD5 hash reads:
$password = md5('$password');
when it should read:
$password = md5($password);
(note the quotes) Also, it would be nice if they had to
type the password in twice to prevent errors.
Thanks.
- jbanes@techie,com
Logged In: YES
user_id=669163
Thanks for your contribution.
Just started with the 0.3 version.
And that will be fixed.
Still looking for people to enhance it though...
Malenki