Changeset 5060 for trunk/include


Ignore:
Timestamp:
Mar 6, 2010, 4:07:08 PM (14 years ago)
Author:
Eric
Message:

Renaming $confno_case_sensitive_for_login to $confinsensitive_case_logon according with VDigital's proposal

Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/config_default.inc.php

    r5014 r5060  
    330330// etc. ... And it will be impossible to use such login variation to create a
    331331// new user account.
    332 $conf['no_case_sensitive_for_login'] = false;
     332$conf['insensitive_case_logon'] = false;
    333333
    334334// how should we check for unicity when adding a photo. Can be 'md5sum' or
  • trunk/include/functions_user.inc.php

    r5021 r5060  
    119119  }
    120120
    121   if ($conf['no_case_sensitive_for_login'] == true)
     121  if ($conf['insensitive_case_logon'] == true)
    122122  {
    123123    $login_error = validate_login_case($login);
Note: See TracChangeset for help on using the changeset viewer.