Skip to:
Content

BuddyPress.org

Ticket #6583: 6583.diff

File 6583.diff, 1.2 KB (added by pareshradadiya, 9 years ago)

Hook moved inside item div

  • src/bp-templates/bp-legacy/buddypress/members/single/friends/requests.php

     
    3636                                <div class="item">
    3737                                        <div class="item-title"><a href="<?php bp_member_link(); ?>"><?php bp_member_name(); ?></a></div>
    3838                                        <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' ); ?>
    3947                                </div>
    4048
    41                                 <?php
    4249
    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 
    5050                                <div class="action">
    5151                                        <a class="button accept" href="<?php bp_friend_accept_request_link(); ?>"><?php _e( 'Accept', 'buddypress' ); ?></a> &nbsp;
    5252                                        <a class="button reject" href="<?php bp_friend_reject_request_link(); ?>"><?php _e( 'Reject', 'buddypress' ); ?></a>