Skip to:
Content

bbPress.org


Ignore:
Timestamp:
08/11/2015 08:17:53 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Sniffer: Whitespace around variables in arrays.

File:
1 edited

Legend:

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

    r5858 r5908  
    19841984            $key = array_search( bbp_get_private_status_id(), $post_stati );
    19851985            if ( ! empty( $key ) ) {
    1986                 unset( $post_stati[$key] );
     1986                unset( $post_stati[ $key ] );
    19871987            }
    19881988
     
    19981998            $key = array_search( bbp_get_hidden_status_id(), $post_stati );
    19991999            if ( ! empty( $key ) ) {
    2000                 unset( $post_stati[$key] );
     2000                unset( $post_stati[ $key ] );
    20012001            }
    20022002
Note: See TracChangeset for help on using the changeset viewer.