diff options
author | flop25 <flop25@piwigo.org> | 2011-05-12 14:26:21 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2011-05-12 14:26:21 +0000 |
commit | 0a0bad781b86dac7b854a48b7c4a89bc27cbacf0 (patch) | |
tree | bde7ab700df909d14eac1a855362c4ee96bd91c1 /include/functions_user.inc.php | |
parent | b658b845449a243203fa13550d3e89e86c201762 (diff) |
feature:1835
better managment if $conf['insensitive_case_logon'] is true, for identification
git-svn-id: http://piwigo.org/svn/trunk@10860 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_user.inc.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index 95cd23261..61a796e4e 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -90,7 +90,39 @@ WHERE LOWER(".stripslashes($conf['user_fields']['username']).") = '".strtolower( } } } +/** + * For test on username case sensitivity + * + * @param : $username typed in by user for identification + * + * @return : $username found in database + * + */ +function search_case_username($username) +{ + global $conf; + + $username_lo = strtolower($username); + $SCU_users = array(); + + $q = pwg_query(" + SELECT ".$conf['user_fields']['username']." AS username + FROM `".USERS_TABLE."`; + "); + while ($r = pwg_db_fetch_assoc($q)) + $SCU_users[$r['username']] = strtolower($r['username']); + // $SCU_users is now an associative table where the key is the account as + // registered in the DB, and the value is this same account, in lower case + + $users_found = array_keys($SCU_users, $username_lo); + // $users_found is now a table of which the values are all the accounts + // which can be written in lowercase the same way as $username + if (count($users_found) != 1) // If ambiguous, don't allow lowercase writing + return $username; // but normal writing will work + else + return $users_found[0]; +} function register_user($login, $password, $mail_address, $with_notification = true, $errors = array()) { |