Ticket #3406: 3406.patch
File 3406.patch, 2.1 KB (added by , 4 years ago) |
---|
-
src/includes/admin/metaboxes.php
302 302 * The meta-box that holds all of the additional forum information 303 303 * 304 304 * @since 2.0.0 bbPress (r2744) 305 * 306 * @param WP_Post $post The current post object. 305 307 */ 306 308 function bbp_forum_metabox( $post ) { 307 309 … … 393 395 * The meta-box that holds all of the additional topic information 394 396 * 395 397 * @since 2.0.0 bbPress (r2464) 398 * 399 * @param WP_Post $post The current post object. 396 400 */ 397 401 function bbp_topic_metabox( $post ) { 398 402 … … 463 467 * The meta-box that holds all of the additional reply information 464 468 * 465 469 * @since 2.0.0 bbPress (r2464) 470 * 471 * @param WP_Post $post The current post object. 466 472 */ 467 473 function bbp_reply_metabox( $post ) { 468 474 … … 596 602 * 597 603 * @since 2.0.0 bbPress (r2828) 598 604 * 599 * @param WP_Post $post The current post object 605 * @param WP_Post $post The current post object. 600 606 */ 601 607 function bbp_author_metabox( $post ) { 602 608 … … 646 652 * Moderator assignment meta-box 647 653 * 648 654 * @since 2.6.0 bbPress (r2828) 655 * 656 * @param WP_Post $post The current post object. 649 657 */ 650 658 function bbp_moderator_assignment_metabox( $post ) { 651 659 … … 669 677 * See who engaged with a topic 670 678 * 671 679 * @since 2.6.0 bbPress (r6333) 680 * 681 * @param WP_Post $post The current post object. 672 682 */ 673 683 function bbp_topic_engagements_metabox( $post ) { 674 684 … … 702 712 * 703 713 * @since 2.6.0 bbPress (r6197) 704 714 * @since 2.6.0 bbPress (r6333) Updated to use BBP_User_Query 715 * 716 * @param WP_Post $post The current post object. 705 717 */ 706 718 function bbp_topic_favorites_metabox( $post ) { 707 719 … … 735 747 * 736 748 * @since 2.6.0 bbPress (r6197) 737 749 * @since 2.6.0 bbPress (r6333) Updated to use BBP_User_Query 750 * 751 * @param WP_Post $post The current post object. 738 752 */ 739 753 function bbp_topic_subscriptions_metabox( $post ) { 740 754 … … 775 789 * 776 790 * @since 2.6.0 bbPress (r6197) 777 791 * @since 2.6.0 bbPress (r6333) Updated to use BBP_User_Query 792 * 793 * @param WP_Post $post The current post object. 778 794 */ 779 795 function bbp_forum_subscriptions_metabox( $post ) { 780 796