Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/15/2011 02:55:33 PM (14 years ago)
Author:
boonebgorges
Message:

Passes settings_link variable to notification message filters. Fixes #3113. Props nerrad

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-friends/bp-friends-notifications.php

    r3614 r4144  
    3737    $to = apply_filters( 'friends_notification_new_request_to', $to );
    3838    $subject = apply_filters( 'friends_notification_new_request_subject', $subject, $initiator_name );
    39     $message = apply_filters( 'friends_notification_new_request_message', $message, $initiator_name, $initiator_link, $all_requests_link );
     39    $message = apply_filters( 'friends_notification_new_request_message', $message, $initiator_name, $initiator_link, $all_requests_link, $settings_link );
    4040
    4141    wp_mail( $to, $subject, $message );
     
    7777    $to = apply_filters( 'friends_notification_accepted_request_to', $to );
    7878    $subject = apply_filters( 'friends_notification_accepted_request_subject', $subject, $friend_name );
    79     $message = apply_filters( 'friends_notification_accepted_request_message', $message, $friend_name, $friend_link );
     79    $message = apply_filters( 'friends_notification_accepted_request_message', $message, $friend_name, $friend_link, $settings_link );
    8080
    8181    wp_mail( $to, $subject, $message );
Note: See TracChangeset for help on using the changeset viewer.