Topic: Postgres is case sensitive and registratation
If you use postgres a user may currently have registered a user kalle but a new user may still register the user Kalle since postgres is case sensitive. This will cause login problems.
I changed the code to use ILIKE instead of = below the comment "Check that the username (or a too similar username) is not already" at line 128 in register.php.
Are there any other problems that may surface since postgres is case sensitive? Maybe we could solve those at the same time?
Ulf