Changeset 2846 for branches/1.2/bp-core/bp-core-signup.php
- Timestamp:
- 03/12/2010 06:41:52 PM (16 years ago)
- File:
-
- 1 edited
-
branches/1.2/bp-core/bp-core-signup.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/bp-core/bp-core-signup.php
r2832 r2846 362 362 $activation_key = wp_hash( $user_id ); 363 363 update_usermeta( $user_id, 'activation_key', $activation_key ); 364 bp_core_signup_send_validation_email( $user_id, $ activation_key );364 bp_core_signup_send_validation_email( $user_id, $user_email, $activation_key ); 365 365 } 366 366 … … 508 508 } 509 509 510 function bp_core_signup_send_validation_email( $user_id, $ key ) {510 function bp_core_signup_send_validation_email( $user_id, $user_email, $key ) { 511 511 $activate_url = bp_get_activation_page() ."?key=$key"; 512 512 $activate_url = clean_url( $activate_url );
Note: See TracChangeset
for help on using the changeset viewer.