From: Arun Persaud Date: Tue, 8 Apr 2008 06:04:56 +0000 (-0700) Subject: BUGFIX: adding new users was broken X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f3cec73181b5ac35486fea031828b11468bceb9;p=e-DoKo.git BUGFIX: adding new users was broken forgot to update the insert statement for the db when changing the user table a while ago. fixed now. Signed-off-by: Arun Persaud --- diff --git a/register.php b/register.php index 42b62ad..1c48288 100644 --- a/register.php +++ b/register.php @@ -41,7 +41,7 @@ if(myisset("Rfullname","Remail","Rpassword","Rtimezone") ) $r=mysql_query("INSERT INTO User VALUES(NULL,".DB_quote_smart($_REQUEST["Rfullname"]). ",".DB_quote_smart($_REQUEST["Remail"]). ",".DB_quote_smart(md5($_REQUEST["Rpassword"])). - ",".DB_quote_smart($_REQUEST["Rtimezone"]).",NULL)"); + ",".DB_quote_smart($_REQUEST["Rtimezone"]).",NULL,NULL)"); if($r) echo " Welcome to e-DoKo, you are now registered, please visit the".