Skip to:
Content

bbPress.org

Changeset 5311


Ignore:
Timestamp:
03/05/2014 07:20:02 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Use correct uppercase type hinting for forum meta queries.

Location:
trunk/src/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/common/functions.php

    r5260 r5311  
    17621762                                'key'     => '_bbp_forum_id',
    17631763                                'value'   => bbp_get_forum_id(),
    1764                                 'type'    => 'numeric',
     1764                                'type'    => 'NUMERIC',
    17651765                                'compare' => '='
    17661766                            ) );
     
    18061806
    18071807                            // Exclude private/hidden forums if not looking at single
    1808                             if ( empty( $select_query_vars ) )
     1808                            if ( empty( $select_query_vars ) ) {
    18091809                                $meta_query = array( bbp_exclude_forum_ids( 'meta_query' ) );
     1810                            }
    18101811
    18111812                            // The query
  • trunk/src/includes/forums/functions.php

    r5299 r5311  
    17501750                        'key'     => '_bbp_forum_id',
    17511751                        'value'   => implode( ',', $forum_ids ),
    1752                         'type'    => 'numeric',
     1752                        'type'    => 'NUMERIC',
    17531753                        'compare' => ( 1 < count( $forum_ids ) ) ? 'NOT IN' : '!='
    17541754                    );
Note: See TracChangeset for help on using the changeset viewer.