Changeset 5035 in subversion
- Timestamp:
- Aug 9, 2011 7:43:47 AM (22 months ago)
- Location:
- trunk/plugins/password
- Files:
-
- 2 edited
-
drivers/ldap.php (modified) (2 diffs)
-
package.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/password/drivers/ldap.php
r4529 r5035 201 201 */ 202 202 203 function hashPassword( $passwordClear, $encodageType ) 203 function hashPassword( $passwordClear, $encodageType ) 204 204 { 205 205 $encodageType = strtolower( $encodageType ); … … 272 272 case 'samba': 273 273 if (function_exists('hash')) { 274 $cryptedPassword = hash('md4', rcube_charset_convert($password _clear, RCMAIL_CHARSET, 'UTF-16LE'));274 $cryptedPassword = hash('md4', rcube_charset_convert($passwordClear, RCMAIL_CHARSET, 'UTF-16LE')); 275 275 } else { 276 276 /* Your PHP install does not have the hash() function */ -
trunk/plugins/password/package.xml
r4595 r5035 29 29 <notes> 30 30 - When old and new passwords are the same, do nothing, return success (#1487823) 31 - Fixed Samba password hashing in 'ldap' driver 31 32 </notes> 32 33 <contents>
Note: See TracChangeset
for help on using the changeset viewer.
