Ticket #7550: item_nav_actions.patch
File item_nav_actions.patch, 1.9 KB (added by , 8 years ago) |
---|
-
src/bp-templates/bp-legacy/buddypress/groups/single/home.php
34 34 ?> 35 35 36 36 </div><!-- #item-header --> 37 37 38 <?php 39 40 /** 41 * Fires before the display of the group item navigation div. 42 * 43 */ 44 do_action( 'bp_before_group_item_nav' ); ?> 45 38 46 <div id="item-nav"> 39 47 <div class="item-list-tabs no-ajax" id="object-nav" aria-label="<?php esc_attr_e( 'Group primary navigation', 'buddypress' ); ?>" role="navigation"> 40 48 <ul> … … 53 61 </ul> 54 62 </div> 55 63 </div><!-- #item-nav --> 56 64 65 <?php 66 67 /** 68 * Fires after the display of the group item navigation div. 69 * 70 */ 71 do_action('bp_after_group_item_nav' ); ?> 72 57 73 <div id="item-body"> 58 74 59 75 <?php -
src/bp-templates/bp-legacy/buddypress/members/single/home.php
33 33 ?> 34 34 35 35 </div><!-- #item-header --> 36 36 37 <?php 38 /** 39 * Fires before the display of the member item navigation div. 40 * 41 */ 42 do_action( 'bp_before_member_item_nav' ); ?> 43 37 44 <div id="item-nav"> 38 45 <div class="item-list-tabs no-ajax" id="object-nav" aria-label="<?php esc_attr_e( 'Member primary navigation', 'buddypress' ); ?>" role="navigation"> 39 46 <ul> … … 52 59 </ul> 53 60 </div> 54 61 </div><!-- #item-nav --> 55 62 63 <?php 64 /** 65 * Fires after the display of the member item navigation div. 66 * 67 */ 68 do_action('bp_after_member_item_nav' ); ?> 69 56 70 <div id="item-body"> 57 71 58 72 <?php