This commit is contained in:
Your Name 2020-07-18 09:06:54 -04:00
parent a71bdb57d8
commit 4388b126e2
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ func Register(username, email, ip string) bool {
log.Printf("scsusers.Register: Bcrypt GenerateFromPassword failed? Pass is %s and error is %s\n", pass, err.Error())
return false
}
q := fmt.Sprintf("insert into %s_auth (username, displayname, email, password, registration_date, registration_ip) values ($1, $2, $3, , $4, CURRENT_TIMESTAMP, $5)", c.TablePrefix)
q := fmt.Sprintf("insert into %s_auth (username, displayname, email, password, registration_date, registration_ip) values ($1, $2, $3, $4, CURRENT_TIMESTAMP, $5)", c.TablePrefix)
_, err = c.db.Exec(q, username, username, email, crypt, ip)
if err != nil {
log.Printf("scsusers.Register: insert failed: %s\n", err.Error())