Skip to:
Content

BuddyPress.org

Opened 15 years ago

Closed 15 years ago

#869 closed defect (bug) (fixed)

E-mail notification for personal wire does not respect user settings

Reported by: plrk's profile plrk Owned by: plrk's profile plrk
Milestone: 1.1 Priority: major
Severity: Version:
Component: 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)

bp-xprofile-notifications.diff (1.0 KB) - added by plrk 15 years ago.
Patch

Download all attachments as: .zip

Change History (6)

#1 @plrk
15 years ago

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' ) ) {

#2 @plrk
15 years ago

  • Owner set to plrk
  • Status changed from new to assigned

#3 @plrk
15 years ago

  • Keywords has-patch added
  • Milestone set to 1.0.4

#4 @apeatling
15 years ago

  • Milestone changed from 1.0.4 to 1.1

Milestone 1.0.4 deleted

#5 @apeatling
15 years ago

  • Resolution set to fixed
  • Status changed from assigned to closed

(In [1727]) Fixes #869 props plrk

Note: See TracTickets for help on using tickets.