Originally posted by rosella500
View Post

in the registration PHP, there's a query
but it should be
PHP Code:
SELECT * FROM `users` WHERE `name`='".$accountname."'
PHP Code:
SELECT * FROM `users` WHERE `username`='".$accountname."'
Removing that last line seems to have fixed it. Obviously, depending on you warning settings, this might not come up or be a problem, but it seems to be a redundant line anyway.
Comment