Changeset 4144 for trunk/bp-activity/bp-activity-notifications.php
- Timestamp:
- 03/15/2011 02:55:33 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-notifications.php
r4118 r4144 60 60 $to = apply_filters( 'bp_activity_at_message_notification_to', $to ); 61 61 $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 ); 63 63 64 64 wp_mail( $to, $subject, $message ); … … 106 106 $to = apply_filters( 'bp_activity_new_comment_notification_to', $to ); 107 107 $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 ); 109 109 110 110 wp_mail( $to, $subject, $message ); … … 151 151 $to = apply_filters( 'bp_activity_new_comment_notification_comment_author_to', $to ); 152 152 $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 ); 154 154 155 155 wp_mail( $to, $subject, $message );
Note: See TracChangeset
for help on using the changeset viewer.