|
From: Benjamin C. <bc...@us...> - 2001-08-17 02:41:19
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv1219
Modified Files:
user.php
Log Message:
DB conversion
Index: user.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/user.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- user.php 2001/08/09 12:54:47 1.7
+++ user.php 2001/08/17 02:41:16 1.8
@@ -40,7 +40,7 @@
$mpassword = $pass1;
}
- $q->query("update User set Password = '$mpassword' where UserID = $u");
+ $q->query("update user set password = '$mpassword' where user_id = $u");
$t->set_file('content', 'passwordchanged.html');
}
|