The User table in the database contains a created field, which holds a unix timestamp for the time the user was created. For some users this timestamp is set to zero, which is obviously wrong. I have no idea what causes this behaviour.
To see affected users, run the following query against the database: SELECT * FROM User WHERE created = 0
The
User
table in the database contains acreated
field, which holds a unix timestamp for the time the user was created. For some users this timestamp is set to zero, which is obviously wrong. I have no idea what causes this behaviour.To see affected users, run the following query against the database:
SELECT * FROM User WHERE created = 0