Changeset 13798 for trunk/src/bp-members/classes/class-bp-signup.php
- Timestamp:
- 04/21/2024 06:37:13 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/classes/class-bp-signup.php
r13499 r13798 534 534 * 535 535 * @since 2.0.0 536 * @deprecated 14.0.0 536 537 * 537 538 * @global wpdb $wpdb The WordPress database object. … … 544 545 */ 545 546 public static function add_backcompat( $user_login = '', $user_password = '', $user_email = '', $usermeta = array() ) { 547 _deprecated_function( __METHOD__, '14.0.0' ); 548 546 549 global $wpdb; 547 550 … … 604 607 * 605 608 * @since 10.0.0 609 * @deprecated 14.0.0 606 610 * 607 611 * @param int $user_id ID of the WP_User just added. 608 612 */ 609 do_action ( 'bp_core_signups_after_add_backcompat', $user_id);613 do_action_deprecated( 'bp_core_signups_after_add_backcompat', array( $user_id ), '14.0.0' ); 610 614 611 615 /** … … 613 617 * 614 618 * @since 2.0.0 619 * @deprecated 14.0.0 615 620 * 616 621 * @param int $user_id User ID being registered. 617 622 */ 618 return apply_filters ( 'bp_core_signups_add_backcompat', $user_id);623 return apply_filters_deprecated( 'bp_core_signups_add_backcompat', array( $user_id ), '14.0.0' ); 619 624 } 620 625
Note: See TracChangeset
for help on using the changeset viewer.