Skip to:
Content

BuddyPress.org

Changeset 5081


Ignore:
Timestamp:
08/31/2011 07:27:24 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Add missing parentheses in _is_ functions.

File:
1 edited

Legend:

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

    r5072 r5081  
    11781178 */
    11791179function bp_is_user_forums_started() {
    1180     if ( bp_is_user_forums && bp_is_current_action( 'topics' ) )
     1180    if ( bp_is_user_forums() && bp_is_current_action( 'topics' ) )
    11811181        return true;
    11821182
     
    11931193 */
    11941194function bp_is_user_forums_replied_to() {
    1195     if ( bp_is_user_forums && bp_is_current_action( 'replies' ) )
     1195    if ( bp_is_user_forums() && bp_is_current_action( 'replies' ) )
    11961196        return true;
    11971197
Note: See TracChangeset for help on using the changeset viewer.