Skip to:
Content

BuddyPress.org

Changeset 9848


Ignore:
Timestamp:
05/07/2015 12:53:06 AM (10 years ago)
Author:
tw2113
Message:

Fixes documentation changes for some filters.

Props ecehren.

See #5940, #5941, #5943.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-filters.php

    r9819 r9848  
    802802
    803803    /**
    804      * @param  string the BuddyPress page title
    805      * @param  string $title the original WordPress page title
    806      * @param  string $sep the title parts separator
     804     * Filters the page title for BuddyPress pages.
     805     *
     806     * @since  BuddyPress (1.5.0)
     807     *
     808     * @param  string $new_title   The BuddyPress page title.
     809     * @param  string $title       The original WordPress page title.
     810     * @param  string $sep         The title parts separator.
    807811     * @param  string $seplocation Location of the separator (left or right).
    808812     */
  • trunk/src/bp-forums/bp-forums-template.php

    r9819 r9848  
    18901890         * @since BuddyPress (1.5.0)
    18911891         *
    1892          * @param string $value    Pagination count for the current topic list.
     1892         * @param string $message  Pagination count for the current topic list.
    18931893         * @param string $from_num Low end count in the view.
    18941894         * @param string $to_num   High end count in the view.
     
    26402640     * @since BuddyPress (1.0.0)
    26412641     *
    2642      * @param string $value    Pagination count for the current topic page.
     2642     * @param string $message  Pagination count for the current topic page.
    26432643     * @param string $from_num Low end count in the view.
    26442644     * @param string $to_num   High end count in the view.
  • trunk/src/bp-groups/bp-groups-template.php

    r9828 r9848  
    18111811         * @since BuddyPress (1.5.0)
    18121812         *
    1813          * @param string $value    "Viewing x-y of z groups" text.
     1813         * @param string $message  "Viewing x-y of z groups" text.
    18141814         * @param string $from_num Total amount for the low value in the range.
    18151815         * @param string $to_num   Total amount for the high value in the range.
     
    52685268         * @since BuddyPress (2.0.0)
    52695269         *
    5270          * @param string $value Pagination count text for group membership requests.
     5270         * @param string $message  Pagination count text for group membership requests.
     5271         * @param string $from_num Total amount for the low value in the range.
     5272         * @param string $to_num   Total amount for the high value in the range.
     5273         * @param string $total    Total amount of members found.
    52715274         */
    52725275        return apply_filters( 'bp_get_group_requests_pagination_count', $message, $from_num, $to_num, $total );
Note: See TracChangeset for help on using the changeset viewer.