Changeset 2697 for trunk/bp-activity/bp-activity-notifications.php
- Timestamp:
- 02/12/2010 01:01:19 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/bp-activity/bp-activity-notifications.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-notifications.php
r2663 r2697 40 40 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 41 41 42 // Send it 42 /* Send the message */ 43 $to = apply_filters( 'bp_activity_at_message_notification_to', $to ); 44 $subject = apply_filters( 'bp_activity_at_message_notification_subject', $subject ); 45 $message = apply_filters( 'bp_activity_at_message_notification_message', $message ); 46 43 47 wp_mail( $to, $subject, $message ); 44 48 } … … 76 80 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 77 81 78 // Send it 82 /* Send the message */ 83 $to = apply_filters( 'bp_activity_new_comment_notification_to', $to ); 84 $subject = apply_filters( 'bp_activity_new_comment_notification_subject', $subject ); 85 $message = apply_filters( 'bp_activity_new_comment_notification_message', $message ); 86 79 87 wp_mail( $to, $subject, $message ); 80 88 } … … 111 119 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link ); 112 120 113 // Send it 121 /* Send the message */ 122 $to = apply_filters( 'bp_activity_new_comment_notification_comment_author_to', $to ); 123 $subject = apply_filters( 'bp_activity_new_comment_notification_comment_author_subject', $subject ); 124 $message = apply_filters( 'bp_activity_new_comment_notification_comment_author_message', $message ); 125 114 126 wp_mail( $to, $subject, $message ); 115 127 }
Note: See TracChangeset
for help on using the changeset viewer.