Skip to:
Content

bbPress.org

Changeset 4614


Ignore:
Timestamp:
12/21/2012 07:22:49 AM (12 years ago)
Author:
johnjamesjacoby
Message:

Fix favorite/subscription links when viewing a group forum. Use bbPress _is_ functions instead. Props jmdodd. Fixes #2120.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/users/template-tags.php

    r4543 r4614  
    701701        if ( bbp_is_favorites() ) {
    702702            $permalink = bbp_get_favorites_permalink( $user_id );
    703         } elseif ( is_singular( bbp_get_topic_post_type() ) ) {
    704             $permalink = bbp_get_topic_permalink( $topic_id );
    705         } elseif ( is_singular( bbp_get_reply_post_type() ) ) {
     703        } elseif ( bbp_is_single_topic() || bbp_is_single_reply() ) {
    706704            $permalink = bbp_get_topic_permalink( $topic_id );
    707705        } else {
     
    859857        if ( bbp_is_subscriptions() ) {
    860858            $permalink = bbp_get_subscriptions_permalink( $user_id );
    861         } elseif ( is_singular( bbp_get_topic_post_type() ) ) {
    862             $permalink = bbp_get_topic_permalink( $topic_id );
    863         } elseif ( is_singular( bbp_get_reply_post_type() ) ) {
     859        } elseif ( bbp_is_single_topic() || bbp_is_single_reply() ) {
    864860            $permalink = bbp_get_topic_permalink( $topic_id );
    865861        } else {
Note: See TracChangeset for help on using the changeset viewer.