From: Matthijs Kooijman Date: Mon, 14 Feb 2011 15:29:54 +0000 (+0100) Subject: phpbb: Make the username case-insensitve on login again. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fdorestad-bookings.git;a=commitdiff_plain;h=HEAD phpbb: Make the username case-insensitve on login again. The username field in the phpbb3 database is case sensitive (i.e., it has utf_bin collation), whereas in phpbb2 it was case insensitive. This commit changes the SQL query to make logins case insensitive again, since a lot of people used a capital letter for registering their username, but forgot that later on... --- diff --git a/auth.py b/auth.py index 9d8566f..23b48bb 100644 --- a/auth.py +++ b/auth.py @@ -62,7 +62,7 @@ class PhpBBBackend: # Get some data cursor = conn.cursor () - cursor.execute ("SELECT user_password,user_email FROM %susers WHERE username=%%s" % prefix, username) + cursor.execute ("SELECT user_password,user_email FROM %susers WHERE LOWER(username)=LOWER(%%s)" % prefix, username) # No data? No login. if (cursor.rowcount == 0):