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-activity/bp-activity-notifications.php

    r4118 r4144  
    6060            $to = apply_filters( 'bp_activity_at_message_notification_to', $to );
    6161            $subject = apply_filters( 'bp_activity_at_message_notification_subject', $subject, $poster_name );
    62             $message = apply_filters( 'bp_activity_at_message_notification_message', $message, $poster_name, $content, $message_link );
     62            $message = apply_filters( 'bp_activity_at_message_notification_message', $message, $poster_name, $content, $message_link, $settings_link );
    6363
    6464            wp_mail( $to, $subject, $message );
     
    106106        $to = apply_filters( 'bp_activity_new_comment_notification_to', $to );
    107107        $subject = apply_filters( 'bp_activity_new_comment_notification_subject', $subject, $poster_name );
    108         $message = apply_filters( 'bp_activity_new_comment_notification_message', $message, $poster_name, $content, $thread_link );
     108        $message = apply_filters( 'bp_activity_new_comment_notification_message', $message, $poster_name, $content, $thread_link, $settings_link );
    109109
    110110        wp_mail( $to, $subject, $message );
     
    151151        $to = apply_filters( 'bp_activity_new_comment_notification_comment_author_to', $to );
    152152        $subject = apply_filters( 'bp_activity_new_comment_notification_comment_author_subject', $subject, $poster_name );
    153         $message = apply_filters( 'bp_activity_new_comment_notification_comment_author_message', $message, $poster_name, $content );
     153        $message = apply_filters( 'bp_activity_new_comment_notification_comment_author_message', $message, $poster_name, $content, $settings_link );
    154154
    155155        wp_mail( $to, $subject, $message );
Note: See TracChangeset for help on using the changeset viewer.