- Timestamp:
- 04/28/2015 01:52:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/forums.php
r9604 r9814 22 22 <option value="unreplied"><?php _e( 'Unreplied', 'buddypress' ); ?></option> 23 23 24 <?php do_action( 'bp_forums_directory_order_options' ); ?> 24 <?php 25 26 /** 27 * Fires inside the members forums order options select input. 28 * 29 * @since BuddyPress (1.2.0) 30 */ 31 do_action( 'bp_forums_directory_order_options' ); ?> 25 32 26 33 </select> … … 35 42 36 43 else : 44 45 /** 46 * Fires before the display of member forums content. 47 * 48 * @since BuddyPress (1.5.0) 49 */ 37 50 do_action( 'bp_before_member_forums_content' ); ?> 38 51 … … 43 56 </div> 44 57 45 <?php do_action( 'bp_after_member_forums_content' ); ?> 58 <?php 59 60 /** 61 * Fires after the display of member forums content. 62 * 63 * @since BuddyPress (1.5.0) 64 */ 65 do_action( 'bp_after_member_forums_content' ); ?> 46 66 47 67 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.