Skip to:
Content

bbPress.org

Changeset 5165


Ignore:
Timestamp:
11/23/2013 10:09:47 AM (11 years ago)
Author:
johnjamesjacoby
Message:

Revert part of r5164 that moved the $r array within a bbp_is_forum_category() check in bbp_get_forum_subscription_link(), as it caused debug notices from $r not being defined. See #2475.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/forums/template.php

    r5164 r5165  
    819819        $retval = false;
    820820
     821        // Parse the arguments
     822        $r = bbp_parse_args( $args, array(
     823            'forum_id'    => 0,
     824            'user_id'     => 0,
     825            'before'      => '',
     826            'after'       => '',
     827            'subscribe'   => __( 'Subscribe',   'bbpress' ),
     828            'unsubscribe' => __( 'Unsubscribe', 'bbpress' )
     829        ), 'get_forum_subscribe_link' );
     830
    821831        // No link for categories until we support subscription hierarchy
    822832        // @see http://bbpress.trac.wordpress.org/ticket/2475
    823833        if ( ! bbp_is_forum_category() ) {
    824 
    825             // Parse the arguments
    826             $r = bbp_parse_args( $args, array(
    827                 'forum_id'    => 0,
    828                 'user_id'     => 0,
    829                 'before'      => '',
    830                 'after'       => '',
    831                 'subscribe'   => __( 'Subscribe',   'bbpress' ),
    832                 'unsubscribe' => __( 'Unsubscribe', 'bbpress' )
    833             ), 'get_forum_subscribe_link' );
    834 
    835             // Get the link
    836834            $retval = bbp_get_user_subscribe_link( $r );
    837835        }
Note: See TracChangeset for help on using the changeset viewer.