Changeset 6272 for trunk/src/includes/admin/replies.php
- Timestamp:
- 02/02/2017 07:46:37 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/replies.php
r6263 r6272 77 77 add_filter( 'post_row_actions', array( $this, 'row_actions' ), 10, 2 ); 78 78 79 // Reply meta box actions79 // Reply meta-box actions 80 80 add_action( 'add_meta_boxes', array( $this, 'attributes_metabox' ) ); 81 81 add_action( 'add_meta_boxes', array( $this, 'author_metabox' ) ); … … 329 329 330 330 /** 331 * Add the reply attributes meta box331 * Add the reply attributes meta-box 332 332 * 333 333 * @since 2.0.0 bbPress (r2746) 334 334 * 335 335 * @uses bbp_get_reply_post_type() To get the reply post type 336 * @uses add_meta_box() To add the meta box336 * @uses add_meta_box() To add the meta-box 337 337 * @uses do_action() Calls 'bbp_reply_attributes_metabox' 338 338 */ … … 349 349 350 350 /** 351 * Add the author info meta box351 * Add the author info meta-box 352 352 * 353 353 * Allows editing of information about an author … … 359 359 * @uses bbp_get_topic_post_type() To get the topic post type 360 360 * @uses bbp_get_reply_post_type() To get the reply post type 361 * @uses add_meta_box() To add the meta box361 * @uses add_meta_box() To add the meta-box 362 362 */ 363 363 public function author_metabox() { … … 368 368 } 369 369 370 // Add the meta box370 // Add the meta-box 371 371 add_meta_box( 372 372 'bbp_author_metabox', … … 380 380 381 381 /** 382 * Remove comments & discussion meta boxes if comments are not supported382 * Remove comments & discussion meta-boxes if comments are not supported 383 383 * 384 384 * @since 2.6.0 bbPress (r6186)
Note: See TracChangeset
for help on using the changeset viewer.