Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/22/2010 01:29:59 AM (14 years ago)
Author:
boonebgorges
Message:

Passes additional arguments to the filters that handle the email sent at signup. Fixes #2669, props ptahdunbar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-signup.php

    r3488 r3557  
    630630
    631631    /* Send the message */
    632     $to = apply_filters( 'bp_core_activation_signup_user_notification_to', $user_email );
    633     $subject = apply_filters( 'bp_core_activation_signup_user_notification_subject', $subject );
    634     $message = apply_filters( 'bp_core_activation_signup_user_notification_message', $message );
     632    $to = apply_filters( 'bp_core_activation_signup_user_notification_to', $user_email, $user_id );
     633    $subject = apply_filters( 'bp_core_activation_signup_user_notification_subject', $subject, $user_id );
     634    $message = apply_filters( 'bp_core_activation_signup_user_notification_message', $message, $user_id );
    635635
    636636    wp_mail( $to, $subject, $message, $message_headers );
Note: See TracChangeset for help on using the changeset viewer.