Changeset 8052 for trunk/bp-templates/bp-legacy/buddypress-functions.php
- Timestamp:
- 03/06/2014 01:15:18 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-templates/bp-legacy/buddypress-functions.php
r8048 r8052 1330 1330 1331 1331 } else { 1332 $thread_ids = explode( ',', $_POST['thread_ids'] ); 1333 1334 for ( $i = 0, $count = count( $thread_ids ); $i < $count; ++$i ) { 1335 BP_Messages_Thread::delete( (int) $thread_ids[$i] ); 1336 } 1332 $thread_ids = wp_parse_id_list( $_POST['thread_ids'] ); 1333 messages_delete_thread( $thread_ids ); 1337 1334 1338 1335 _e( 'Messages deleted.', 'buddypress' );
Note: See TracChangeset
for help on using the changeset viewer.