Bugs item #445514, was opened at 2001-07-28 11:17
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=403611&aid=445514&group_id=31885
Category: None
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Andrew Newton (bludot)
>Assigned to: Richard Archer (richardarcher)
Summary: new_user_md5.php3 column names and query
Initial Comment:
The setup scripts supplied for creation of db's and
the query strings in new_user_md5.php3 are
mismatched.
In the auth_user_md5 table a column user_id is
created with the setup script for mysql but the
new_user_md5.php3 script tries to act on the
column 'uid'.
$query = "update auth_user_md5 set
password='$password' where uid='$u_id'";
The inserts work OK because they don't refer to
column names but updates and deletes give
errors.
FIX by nhruby: "change the script to use user_id"
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=403611&aid=445514&group_id=31885
|