diff --git src/includes/forums/template.php src/includes/forums/template.php
index b5e2646..9dce6f7 100644
|
|
function bbp_forum_topics_link( $forum_id = 0 ) { |
1248 | 1248 | function bbp_get_forum_topics_link( $forum_id = 0 ) { |
1249 | 1249 | $forum = bbp_get_forum( $forum_id ); |
1250 | 1250 | $forum_id = $forum->ID; |
1251 | | $topics = sprintf( _n( '%s topic', '%s topics', bbp_get_forum_topic_count( $forum_id, true, false ), 'bbpress' ), bbp_get_forum_topic_count( $forum_id ) ); |
| 1251 | $topics = sprintf( _n( '%s topic', '%s topics', 'bbpress' ), bbp_get_forum_topic_count( $forum_id ), bbp_get_forum_topic_count( $forum_id ) ); |
1252 | 1252 | $retval = ''; |
1253 | 1253 | |
1254 | 1254 | // First link never has view=all |
… |
… |
function bbp_get_form_forum_visibility() { |
2245 | 2245 | |
2246 | 2246 | return apply_filters( 'bbp_get_form_forum_visibility', esc_attr( $forum_visibility ) ); |
2247 | 2247 | } |
2248 | | |
| 2248 | |
2249 | 2249 | /** |
2250 | 2250 | * Output checked value of forum subscription |
2251 | 2251 | * |