Opened 13 years ago
Closed 13 years ago
#5347 closed defect (bug) (fixed)
Bulk Delete Messages Not Working BP1.91
| Reported by: | glyndavidson | Owned by: | djpaul |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.0 |
| Component: | Messages | Version: | 1.9.1 |
| Severity: | normal | 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Yep, good spot.