Skip to:
Content

BuddyPress.org

Opened 3 years ago

Closed 3 years ago

#8546 closed defect (bug) (fixed)

Messages notifications filters: it needs some clean-up!

Reported by: imath's profile imath Owned by: imath's profile imath
Milestone: 10.0.0 Priority: normal
Severity: normal Version:
Component: Messages Keywords: has-patch
Cc:

Description

The dynamic filter 'bp_messages_' . $amount . '_new_message_notification' is including 6 parameters when the notification format is string and the exact same filter is including 7 parameters when the notification format is array.

We need to deprecate this filter in favor of a new one to clean up this mess (I'm probably the one who put it in the first place, btw).

Attachments (1)

8546.patch (10.9 KB) - added by imath 3 years ago.

Download all attachments as: .zip

Change History (2)

@imath
3 years ago

#1 @imath
3 years ago

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

In 13035:

Make the new_message notification filter consistent across formats

The 'bp_messages_' . $amount . '_new_message_notification' dynamic filter is including 6 parameters for the string format and 7 for the array format. This makes it difficult to use for Plugin developers.

To make things more consistent across formats, we are deprecating this filter in favor of a new dynamic filter 'bp_messages_' . $amount . '_new_message_' . $format . '_notification'. FYI, possible filter names are:

  • 'bp_messages_multiple_new_message_string_notification'
  • 'bp_messages_single_new_message_string_notification'
  • 'bp_messages_multiple_new_message_array_notification'
  • 'bp_messages_single_new_message_array_notification'

Fixes #8546

Note: See TracTickets for help on using tickets.