Ticket #6583: 6583.diff
File 6583.diff, 1.2 KB (added by , 9 years ago) |
---|
-
src/bp-templates/bp-legacy/buddypress/members/single/friends/requests.php
36 36 <div class="item"> 37 37 <div class="item-title"><a href="<?php bp_member_link(); ?>"><?php bp_member_name(); ?></a></div> 38 38 <div class="item-meta"><span class="activity"><?php bp_member_last_active(); ?></span></div> 39 <?php 40 41 /** 42 * Fires inside the display of a member friend request item. 43 * 44 * @since BuddyPress (1.1.0) 45 */ 46 do_action( 'bp_friend_requests_item' ); ?> 39 47 </div> 40 48 41 <?php42 49 43 /**44 * Fires inside the display of a member friend request item.45 *46 * @since BuddyPress (1.1.0)47 */48 do_action( 'bp_friend_requests_item' ); ?>49 50 50 <div class="action"> 51 51 <a class="button accept" href="<?php bp_friend_accept_request_link(); ?>"><?php _e( 'Accept', 'buddypress' ); ?></a> 52 52 <a class="button reject" href="<?php bp_friend_reject_request_link(); ?>"><?php _e( 'Reject', 'buddypress' ); ?></a>