Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/31/2011 01:12:04 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Audit _is_ functions and _current_component_ functions. Props r-a-y. Fixes #3399.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-forums/bp-forums-template.php

    r5047 r5072  
    10571057    extract( $r, EXTR_SKIP );
    10581058
    1059     if ( empty( $topic_id ) && bp_is_current_component( 'groups') && bp_is_current_action( 'forum' ) && bp_is_action_variable( 'topic', 0 ) && bp_action_variable( 1 ) )
     1059    if ( empty( $topic_id ) && bp_is_groups_component() && bp_is_current_action( 'forum' ) && bp_is_action_variable( 'topic', 0 ) && bp_action_variable( 1 ) )
    10601060        $topic_id = bp_forums_get_topic_id_from_slug( bp_action_variable( 1 ) );
    1061     elseif ( empty( $topic_id ) && bp_is_current_component( 'forums') && bp_is_current_action( 'topic' ) && bp_action_variable( 0 ) )
     1061    elseif ( empty( $topic_id ) && bp_is_forums_component() && bp_is_current_action( 'topic' ) && bp_action_variable( 0 ) )
    10621062        $topic_id = bp_forums_get_topic_id_from_slug( bp_action_variable( 0 ) );
    10631063
Note: See TracChangeset for help on using the changeset viewer.