From 62f189e0212df8d0aacdc1702e35091b57333f2f Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Mon, 17 Mar 2003 11:32:14 +0000 Subject: [PATCH] added mysql case-sensitivity for username lookup --- lib/authentication/Authenticator.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/authentication/Authenticator.inc b/lib/authentication/Authenticator.inc index 61cc454..2e393b2 100644 --- a/lib/authentication/Authenticator.inc +++ b/lib/authentication/Authenticator.inc @@ -28,7 +28,7 @@ class Authenticator { $aUserDetails = array(); // retrieve the userID - $iUserID = lookupID($default->owl_users_table, "username", "$sUserName"); + $iUserID = lookupID($default->owl_users_table, "BINARY username", "$sUserName"); if ($iUserID) { $oUser = & User::get($iUserID); -- libgit2 0.21.4