Changeset 11576 for trunk/src/bp-messages/bp-messages-template.php
- Timestamp:
- 06/06/2017 05:46:09 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-messages/bp-messages-template.php
r11449 r11576 1635 1635 1636 1636 $recipient_links[] = $recipient_link; 1637 } else { 1638 $recipient_links[] = __( 'you', 'buddypress' ); 1637 1639 } 1638 1640 } 1639 1641 1642 // Concatenate to natural language string. 1643 $recipient_links = wp_sprintf_l( '%l', $recipient_links ); 1644 1640 1645 /** 1641 1646 * Filters the HTML links to the profiles of recipients in the current thread. … … 1645 1650 * @param string $value Comma-separated list of recipient HTML links for current thread. 1646 1651 */ 1647 return apply_filters( 'bp_get_the_thread_recipients_list', implode( ', ', $recipient_links ));1652 return apply_filters( 'bp_get_the_thread_recipients_list', $recipient_links ); 1648 1653 } 1649 1654
Note: See TracChangeset
for help on using the changeset viewer.