Opened 12 years ago
Closed 12 years ago
#5347 closed defect (bug) (fixed)
Bulk Delete Messages Not Working BP1.91
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 2.0 | Priority: | normal |
| Severity: | normal | Version: | 1.9.1 |
| Component: | Messages | Keywords: | |
| Cc: |
Description
I've never submitted a trac entry before so not sure what the correct etiquette is. Anyway, here goes:
Using the legacy theme templates, WP3.8, BP1.91, Bulk delete inbox messages doesn't work.
In /bp-themes/bp-default/_inc/global.js, line 1213
and /bp-templates/bp-legacy/js/buddypress.js line 1242
Shouldn’t
if ( -1 == jq.inArray( this.id ), Array( 'delete_sentbox_messages', 'delete_inbox_messages' ) ) {
be
if ( -1 == jq.inArray( this.id, Array( 'delete_sentbox_messages', 'delete_inbox_messages' ) )) {
?
I changed it and now my bulk delete works.
Change History (3)
Note: See
TracTickets for help on using
tickets.
Yep, good spot.