Skip to:
Content

bbPress.org


Ignore:
Timestamp:
07/14/2015 12:46:38 AM (11 years ago)
Author:
johnjamesjacoby
Message:

I think this building should be condemned. There's serious metal fatigue in all the load-bearing members, the wiring is substandard, it's completely inadequate for our power needs, and the neighborhood is like a demilitarized zone.

File:
1 edited

Legend:

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

    r5823 r5829  
    196196
    197197    // Set show_stickies to false if it wasn't supplied
    198     if ( !isset( $query_args['show_stickies'] ) ) {
     198    if ( ! isset( $query_args['show_stickies'] ) ) {
    199199        $query_args['show_stickies'] = false;
    200200    }
     
    222222    $view = sanitize_title( $view );
    223223
    224     if ( !isset( $bbp->views[ $view ] ) ) {
     224    if ( ! isset( $bbp->views[ $view ] ) ) {
    225225        return false;
    226226    }
     
    253253    $query_args = bbp_get_view_query_args( $view );
    254254
    255     if ( !empty( $new_args ) ) {
     255    if ( ! empty( $new_args ) ) {
    256256        $new_args   = bbp_parse_args( $new_args, '', 'view_query' );
    257257        $query_args = array_merge( $query_args, $new_args );
     
    272272function bbp_get_view_query_args( $view ) {
    273273    $view   = bbp_get_view_id( $view );
    274     $retval = !empty( $view ) ? bbpress()->views[$view]['query'] : false;
     274    $retval = ! empty( $view ) ? bbpress()->views[$view]['query'] : false;
    275275
    276276    return apply_filters( 'bbp_get_view_query_args', $retval, $view );
Note: See TracChangeset for help on using the changeset viewer.