Changeset 7799
- Timestamp:
- 04/24/08 00:33:47 (7 months ago)
- Files:
-
- branches/2.5/wp-includes/pluggable.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.5/wp-includes/pluggable.php
r7798 r7799 1072 1072 $salt = wp_salt(); 1073 1073 1074 if ( function_exists('hash_hmac') ) { 1075 return hash_hmac('md5', $data, $salt); 1076 } else { 1077 return md5($data . $salt); 1078 } 1074 return hash_hmac('md5', $data, $salt); 1079 1075 } 1080 1076 endif;
