Opened 17 years ago
Closed 17 years ago
#869 closed defect (bug) (fixed)
E-mail notification for personal wire does not respect user settings
| Reported by: | plrk | Owned by: | plrk |
|---|---|---|---|
| Priority: | major | Milestone: | 1.1 |
| Component: | Version: | ||
| Severity: | Keywords: | e-mail, notifications, wire, user settings, has-patch | |
| Cc: |
Description
Posts to a user's personal wire generates an e-mail notification to that user, with no regard for the notification settings of that user. Noted in 1.0.2 and 1.0.3, not sure about earlier versions.
Attachments (1)
Change History (6)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
line 27 of bp-xprofile-notifications.php should be changed from:
if ( !get_usermeta( $bp->loggedin_user->id, 'notification_profile_wire_post' ) || 'yes' == get_usermeta( $bp->loggedin_user->id, 'notification_profile_wire_post' ) ) {to:
if ( !get_usermeta( $user_id, 'notification_profile_wire_post' ) || 'yes' == get_usermeta( $user_id, 'notification_profile_wire_post' ) ) {