Ticket #2568: jeffsayre_2568_button.patch
File jeffsayre_2568_button.patch, 797 bytes (added by , 15 years ago) |
---|
-
buddypress/bp-messages.php
177 177 $autocomplete_recipients = explode( ',', $_POST['send-to-input'] ); 178 178 $typed_recipients = explode( ' ', $_POST['send_to_usernames'] ); 179 179 $recipients = array_merge( (array) $autocomplete_recipients, (array) $typed_recipients ); 180 180 $recipients = apply_filters( 'bp_messages_recipients', $recipients ); 181 181 182 /* Send the message */ 182 183 if ( $thread_id = messages_new_message( array( 'recipients' => $recipients, 'subject' => $_POST['subject'], 'content' => $_POST['content'] ) ) ) { 183 184 bp_core_add_message( __( 'Message sent successfully!', 'buddypress' ) );