- Timestamp:
- 04/17/2015 03:31:35 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/activity/comment.php
r9604 r9762 13 13 ?> 14 14 15 <?php do_action( 'bp_before_activity_comment' ); ?> 15 <?php 16 17 /** 18 * Fires before the display of an activity comment. 19 * 20 * @since BuddyPress (1.5.0) 21 */ 22 do_action( 'bp_before_activity_comment' ); ?> 16 23 17 24 <li id="acomment-<?php bp_activity_comment_id(); ?>"> … … 45 52 <?php endif; ?> 46 53 47 <?php do_action( 'bp_activity_comment_options' ); ?> 54 <?php 55 56 /** 57 * Fires after the defualt comment action options display. 58 * 59 * @since BuddyPress (1.6.0) 60 */ 61 do_action( 'bp_activity_comment_options' ); ?> 48 62 49 63 </div> … … 52 66 </li> 53 67 54 <?php do_action( 'bp_after_activity_comment' ); ?> 68 <?php 69 70 /** 71 * Fires after the display of an activity comment. 72 * 73 * @since BuddyPress (1.5.0) 74 */ 75 do_action( 'bp_after_activity_comment' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.