Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
05/30/2023 05:56:44 AM (3 years ago)
Author:
imath
Message:

Deprecate all functions having a @todo Deprecate inline comment

Fixes #8909

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress-functions.php

    r13461 r13493  
    621621 *
    622622 * @since 2.0.0
    623  * @todo Deprecate
     623 * @deprecated 12.0.0
    624624 *
    625625 * @param string $title Groups directory title.
     
    627627 */
    628628function bp_legacy_theme_group_create_button( $title ) {
     629    _deprecated_function( __FUNCTION__, '12.0.0' );
    629630    return $title . ' ' . bp_get_group_create_button();
    630631}
     
    663664 *
    664665 * @since 2.0.0
    665  * @todo Deprecate
     666 * @deprecated 12.0.0
    666667 *
    667668 * @param string $title Sites directory title.
     
    669670 */
    670671function bp_legacy_theme_blog_create_button( $title ) {
     672    _deprecated_function( __FUNCTION__, '12.0.0' );
    671673    return $title . ' ' . bp_get_blog_create_button();
    672674}
Note: See TracChangeset for help on using the changeset viewer.