Commit 62f189e0212df8d0aacdc1702e35091b57333f2f
1 parent
043d722f
added mysql case-sensitivity for username lookup
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1600 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/authentication/Authenticator.inc
| ... | ... | @@ -28,7 +28,7 @@ class Authenticator { |
| 28 | 28 | $aUserDetails = array(); |
| 29 | 29 | |
| 30 | 30 | // retrieve the userID |
| 31 | - $iUserID = lookupID($default->owl_users_table, "username", "$sUserName"); | |
| 31 | + $iUserID = lookupID($default->owl_users_table, "BINARY username", "$sUserName"); | |
| 32 | 32 | if ($iUserID) { |
| 33 | 33 | $oUser = & User::get($iUserID); |
| 34 | 34 | ... | ... |