Opened 14 years ago
Closed 14 years ago
#2235 closed defect (bug) (fixed)
incorrect variable in bp_activity_notifications
Reported by: | 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
Note: See
TracTickets for help on using
tickets.
(In [2869]) Fixes #2235 props peterspeidel