Changeset 4775
- Timestamp:
- 02/19/2013 06:07:10 PM (13 years ago)
- Location:
- trunk/includes
- Files:
-
- 6 edited
-
common/functions.php (modified) (2 diffs)
-
common/template-tags.php (modified) (2 diffs)
-
forums/template-tags.php (modified) (2 diffs)
-
replies/template-tags.php (modified) (1 diff)
-
topics/template-tags.php (modified) (1 diff)
-
users/template-tags.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/common/functions.php
r4735 r4775 579 579 $statistics['hidden_reply_title'] = isset( $hidden_reply_title ) ? $hidden_reply_title : ''; 580 580 581 return apply_filters( 'bbp_get_statistics', $statistics, $ args);581 return apply_filters( 'bbp_get_statistics', $statistics, $r ); 582 582 } 583 583 … … 633 633 634 634 // Finally, return sanitized data or false 635 return apply_filters( 'bbp_filter_anonymous_post_data', $retval, $ args);635 return apply_filters( 'bbp_filter_anonymous_post_data', $retval, $r ); 636 636 } 637 637 -
trunk/includes/common/template-tags.php
r4774 r4775 1112 1112 $login_url = site_url( $login_url, $r['context'] ); 1113 1113 1114 echo apply_filters( 'bbp_wp_login_action', $login_url, $ args);1114 echo apply_filters( 'bbp_wp_login_action', $login_url, $r ); 1115 1115 } 1116 1116 … … 1430 1430 } 1431 1431 1432 return apply_filters( 'bbp_get_dropdown', $retval, $ args);1432 return apply_filters( 'bbp_get_dropdown', $retval, $r ); 1433 1433 } 1434 1434 -
trunk/includes/forums/template-tags.php
r4747 r4775 660 660 $sub_forums = !empty( $r['post_parent'] ) ? $get_posts->query( $r ) : array(); 661 661 662 return (array) apply_filters( 'bbp_forum_get_subforums', $sub_forums, $ args);662 return (array) apply_filters( 'bbp_forum_get_subforums', $sub_forums, $r ); 663 663 } 664 664 … … 1922 1922 1923 1923 // Return filtered result 1924 return apply_filters( 'bbp_get_single_forum_description', $retstr, $ args);1924 return apply_filters( 'bbp_get_single_forum_description', $retstr, $r ); 1925 1925 } 1926 1926 -
trunk/includes/replies/template-tags.php
r4741 r4775 1251 1251 $author_role = sprintf( '%1$s<div class="%2$s">%3$s</div>%4$s', $r['before'], $r['class'], $role, $r['after'] ); 1252 1252 1253 return apply_filters( 'bbp_get_reply_author_role', $author_role, $ args);1253 return apply_filters( 'bbp_get_reply_author_role', $author_role, $r ); 1254 1254 } 1255 1255 -
trunk/includes/topics/template-tags.php
r4705 r4775 2264 2264 $links = implode( $r['sep'], array_filter( $r['links'] ) ); 2265 2265 2266 return apply_filters( 'bbp_get_topic_admin_links', $r['before'] . $links . $r['after'], $ args);2266 return apply_filters( 'bbp_get_topic_admin_links', $r['before'] . $links . $r['after'], $r ); 2267 2267 } 2268 2268 -
trunk/includes/users/template-tags.php
r4672 r4775 292 292 293 293 // Filter and return 294 return (string) apply_filters( 'bbp_get_user_nicename', $retval, $user_id, $ args);294 return (string) apply_filters( 'bbp_get_user_nicename', $retval, $user_id, $r ); 295 295 } 296 296
Note: See TracChangeset
for help on using the changeset viewer.