Changeset 6487
- Timestamp:
- 06/04/2017 10:04:34 PM (8 years ago)
- Location:
- trunk/src/includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/common/functions.php
r6481 r6487 462 462 463 463 // Filter & return 464 return apply_filters( 'bbp_get_statistics', $statistics, $r );464 return apply_filters( 'bbp_get_statistics', $statistics, $r, $args ); 465 465 } 466 466 -
trunk/src/includes/common/template.php
r6486 r6487 2611 2611 2612 2612 // Filter & return 2613 return apply_filters( 'bbp_get_breadcrumb', $trail, $crumbs, $r );2613 return apply_filters( 'bbp_get_breadcrumb', $trail, $crumbs, $r, $args ); 2614 2614 } 2615 2615 -
trunk/src/includes/replies/template.php
r6438 r6487 1361 1361 1362 1362 // Filter & return 1363 return apply_filters( 'bbp_get_reply_author_link', $author_link, $r );1363 return apply_filters( 'bbp_get_reply_author_link', $author_link, $r, $args ); 1364 1364 } 1365 1365 … … 1511 1511 1512 1512 // Filter & return 1513 return apply_filters( 'bbp_get_reply_author_role', $author_role, $r );1513 return apply_filters( 'bbp_get_reply_author_role', $author_role, $r, $args ); 1514 1514 } 1515 1515 … … 2951 2951 2952 2952 // Filter & return 2953 return apply_filters( 'bbp_get_form_reply_status_dropdown', ob_get_clean(), $r );2953 return apply_filters( 'bbp_get_form_reply_status_dropdown', ob_get_clean(), $r, $args ); 2954 2954 } 2955 2955 -
trunk/src/includes/users/template.php
r6438 r6487 536 536 537 537 // Filter & return 538 return (string) apply_filters( 'bbp_get_user_nicename', $retval, $user_id, $r );538 return (string) apply_filters( 'bbp_get_user_nicename', $retval, $user_id, $r, $args ); 539 539 } 540 540 … … 800 800 801 801 // Filter & return 802 return apply_filters( 'bbp_get_admin_link', $retval, $r );802 return apply_filters( 'bbp_get_admin_link', $retval, $r, $args ); 803 803 } 804 804 … … 848 848 849 849 // Filter & return 850 return apply_filters( 'bbp_get_author_ip', $author_ip, $r );850 return apply_filters( 'bbp_get_author_ip', $author_ip, $r, $args ); 851 851 } 852 852
Note: See TracChangeset
for help on using the changeset viewer.