Skip to:
Content

BuddyPress.org

Opened 14 years ago

Closed 14 years ago

#2235 closed defect (bug) (fixed)

incorrect variable in bp_activity_notifications

Reported by: peterspeidel's profile peterspeidel Owned by:
Milestone: Priority: trivial
Severity: Version:
Component: Activity Keywords:
Cc:

Description

see line 18 and 19

		// Now email the user with the contents of the message (if they have enabled email notifications)
		if ( 'no' != get_usermeta( $user_id, 'notification_activity_new_mention' ) ) 

this should be standing there

		// Now email the user with the contents of the message (if they have enabled email notifications)
		if ( 'no' != get_usermeta( $receiver_user_id, 'notification_activity_new_mention' ) )

in other words: replace $user_id for $receiver_user_id

Change History (1)

#1 @apeatling
14 years ago

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

(In [2869]) Fixes #2235 props peterspeidel

Note: See TracTickets for help on using tickets.