Skip to:
Content

bbPress.org


Ignore:
Timestamp:
02/02/2017 07:46:37 PM (8 years ago)
Author:
johnjamesjacoby
Message:

General: hyphenate "meta-box" in documentation to sooth spell-checkers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/replies.php

    r6263 r6272  
    7777        add_filter( 'post_row_actions',                                     array( $this, 'row_actions' ), 10, 2 );
    7878
    79         // Reply metabox actions
     79        // Reply meta-box actions
    8080        add_action( 'add_meta_boxes', array( $this, 'attributes_metabox' ) );
    8181        add_action( 'add_meta_boxes', array( $this, 'author_metabox'     ) );
     
    329329
    330330    /**
    331      * Add the reply attributes metabox
     331     * Add the reply attributes meta-box
    332332     *
    333333     * @since 2.0.0 bbPress (r2746)
    334334     *
    335335     * @uses bbp_get_reply_post_type() To get the reply post type
    336      * @uses add_meta_box() To add the metabox
     336     * @uses add_meta_box() To add the meta-box
    337337     * @uses do_action() Calls 'bbp_reply_attributes_metabox'
    338338     */
     
    349349
    350350    /**
    351      * Add the author info metabox
     351     * Add the author info meta-box
    352352     *
    353353     * Allows editing of information about an author
     
    359359     * @uses bbp_get_topic_post_type() To get the topic post type
    360360     * @uses bbp_get_reply_post_type() To get the reply post type
    361      * @uses add_meta_box() To add the metabox
     361     * @uses add_meta_box() To add the meta-box
    362362     */
    363363    public function author_metabox() {
     
    368368        }
    369369
    370         // Add the metabox
     370        // Add the meta-box
    371371        add_meta_box(
    372372            'bbp_author_metabox',
     
    380380
    381381    /**
    382      * Remove comments & discussion metaboxes if comments are not supported
     382     * Remove comments & discussion meta-boxes if comments are not supported
    383383     *
    384384     * @since 2.6.0 bbPress (r6186)
Note: See TracChangeset for help on using the changeset viewer.