Changeset 13135 for trunk/flash/modules/desktop/inc/customFunctions.inc.php
- Timestamp:
- 11/03/09 05:17:13 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/flash/modules/desktop/inc/customFunctions.inc.php
r12950 r13135 79 79 } 80 80 81 function encryptPassword($sPassword) 82 { 83 return md5($sPassword); 81 function encryptPassword($sId, $sPassword) 82 { 83 $aUser = getProfileInfo($sId); 84 return encryptUserPwd($sPassword, $aUser['Salt']); 84 85 } 85 86
Note: See TracChangeset
for help on using the changeset viewer.