Show
Ignore:
Timestamp:
12/20/10 17:55:44 (2 years ago)
Author:
Eric
Message:

bug 2069 : Improving case sensitivity on logon. Works fine only for case sensitive not for accents at this time.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • extensions/LCAS/trunk/main.inc.php

    r8197 r8201  
    6161    { 
    6262      /* User non case sensitive */ 
    63       if (isset($conf_LCAS[0]) and $conf_LCAS[0] == 'false') 
     63      if (isset($conf_LCAS[0]) and $conf_LCAS[0] == 'true') 
    6464      { 
    65         $new_username =  LCAS_SearchUsername($_POST['username']); // Testing still under progress - This is not fully functionnal ! 
     65        $new_username =  LCAS_SearchUsername($_POST['username']); 
    6666        $_POST['username'] = $new_username == '' ? $_POST['username'] : $new_username; 
    6767      }