Opened 8 years ago
Closed 8 years ago
#2751 closed defect (bug) (duplicate)
Little fix for filter name
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | minor | Version: | |
Component: | Component - Topics | Keywords: | |
Cc: |
Description
includes/topics/template.php file around ~1848, function bbp_get_topic_subscription_link;
// Parse the arguments $r = bbp_parse_args( $args, array( 'user_id' => 0, 'topic_id' => 0, 'before' => ' | ', 'after' => '', 'subscribe' => __( 'Subscribe', 'bbpress' ), 'unsubscribe' => __( 'Unsubscribe', 'bbpress' ) ), 'get_forum_subscribe_link' );
last line should be:
), 'get_topic_subscribe_link' );
Change History (2)
Note: See
TracTickets for help on using
tickets.
I got confused... The description says "Get the forum subscription link" but the function intent is different. :$
Besides changing the wrong function, also change the description.