Changeset 11576
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 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php
r11003 r11576 36 36 <?php else : ?> 37 37 38 <?php printf( __( 'Conversation between %s and you.', 'buddypress' ), bp_get_thread_recipients_list() ); ?>38 <?php printf( __( 'Conversation between %s.', 'buddypress' ), bp_get_thread_recipients_list() ); ?> 39 39 40 40 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.