HomeHelpTrac

Ignore:
Timestamp:
11/03/09 05:17:13 (3 years ago)
Author:
Alexander Levitskiy
Message:

Desktop Application - User Authentication Failed - FIXED

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/flash/modules/desktop/inc/customFunctions.inc.php

    r12950 r13135  
    7979} 
    8080 
    81 function encryptPassword($sPassword) 
    82 { 
    83    return md5($sPassword); 
     81function encryptPassword($sId, $sPassword) 
     82{ 
     83    $aUser = getProfileInfo($sId); 
     84    return encryptUserPwd($sPassword, $aUser['Salt']); 
    8485} 
    8586 
Note: See TracChangeset for help on using the changeset viewer.