Changeset 7837
- Timestamp:
- 04/25/2008 05:12:56 PM (17 years ago)
- Location:
- branches/2.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/2.5/wp-includes/pluggable.php ¶
r7822 r7837 1169 1169 * @return string The random password 1170 1170 **/ 1171 function wp_generate_password($length = 12) { 1172 $chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()"; 1171 function wp_generate_password($length = 12, $special_chars = true) { 1172 $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; 1173 if ( $special_chars ) 1174 $chars .= '!@#$%^&*()'; 1175 1173 1176 $password = ''; 1174 1177 for ( $i = 0; $i < $length; $i++ ) -
TabularUnified branches/2.5/wp-login.php ¶
r7632 r7837 94 94 if ( empty($key) ) { 95 95 // Generate something random for a key... 96 $key = wp_generate_password( );96 $key = wp_generate_password(20, false); 97 97 do_action('retrieve_password_key', $user_login, $key); 98 98 // Now insert the new md5 key into the db
Note: See TracChangeset
for help on using the changeset viewer.